diff options
Diffstat (limited to 'src/main/javassist/CtClass.java')
-rw-r--r-- | src/main/javassist/CtClass.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/javassist/CtClass.java b/src/main/javassist/CtClass.java index 8d50a7b6..b4f4e26a 100644 --- a/src/main/javassist/CtClass.java +++ b/src/main/javassist/CtClass.java @@ -35,7 +35,7 @@ public abstract class CtClass { /** * The version number of this release. */ - public static final String version = "2.7 alpha 5"; + public static final String version = "2.7 alpha 6"; /** * Prints the version number and the copyright notice. @@ -486,6 +486,11 @@ public abstract class CtClass { } /** + * @return null if the specified field is not found. + */ + CtField getField2(String name) { return null; } + + /** * Gets all the fields declared in the class. The inherited fields * are not included. * |