summaryrefslogtreecommitdiff
path: root/src/proguard/classfile/attribute/SignatureAttribute.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/proguard/classfile/attribute/SignatureAttribute.java')
-rw-r--r--src/proguard/classfile/attribute/SignatureAttribute.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/proguard/classfile/attribute/SignatureAttribute.java b/src/proguard/classfile/attribute/SignatureAttribute.java
index 86f95b8..120fa96 100644
--- a/src/proguard/classfile/attribute/SignatureAttribute.java
+++ b/src/proguard/classfile/attribute/SignatureAttribute.java
@@ -2,7 +2,7 @@
* ProGuard -- shrinking, optimization, obfuscation, and preverification
* of Java bytecode.
*
- * Copyright (c) 2002-2013 Eric Lafortune (eric@graphics.cornell.edu)
+ * Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -63,6 +63,15 @@ public class SignatureAttribute extends Attribute
/**
+ * Returns the signature.
+ */
+ public String getSignature(Clazz clazz)
+ {
+ return clazz.getString(u2signatureIndex);
+ }
+
+
+ /**
* Lets the Clazz objects referenced in the signature string accept the
* given visitor.
*/