Class JavaClass
- java.lang.Object
- 
- org.apache.tomcat.util.bcel.classfile.JavaClass
 
- 
 public class JavaClass extends java.lang.ObjectRepresents a Java class, i.e., the data structures, constant pool, fields, methods and commands contained in a Java .class file. See JVM specification for details. The intent of this class is to represent a parsed or otherwise existing class file. Those interested in programmatically generating classes should see the ClassGen class.
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccessFlags()AnnotationEntry[]getAllAnnotationEntries()Return annotations entries from "RuntimeVisibleAnnotations" attribute on the class, fields or methods if there is any.AnnotationEntry[]getAnnotationEntries()Return annotations entries from "RuntimeVisibleAnnotations" attribute on the class, if there is any.java.lang.StringgetClassName()java.lang.String[]getInterfaceNames()java.lang.StringgetSuperclassName()returns the super class name of this class.
 
- 
- 
- 
Method Detail- 
getAccessFlagspublic final int getAccessFlags() - Returns:
- Access flags of the object aka. "modifiers".
 
 - 
getAllAnnotationEntriespublic AnnotationEntry[] getAllAnnotationEntries() Return annotations entries from "RuntimeVisibleAnnotations" attribute on the class, fields or methods if there is any.- Returns:
- An array of entries or null
 
 - 
getAnnotationEntriespublic AnnotationEntry[] getAnnotationEntries() Return annotations entries from "RuntimeVisibleAnnotations" attribute on the class, if there is any.- Returns:
- An array of entries or null
 
 - 
getClassNamepublic java.lang.String getClassName() - Returns:
- Class name.
 
 - 
getInterfaceNamespublic java.lang.String[] getInterfaceNames() - Returns:
- Names of implemented interfaces.
 
 - 
getSuperclassNamepublic java.lang.String getSuperclassName() returns the super class name of this class. In the case that this class is java.lang.Object, it will return itself (java.lang.Object). This is probably incorrect but isn't fixed at this time to not break existing clients.- Returns:
- Superclass name.
 
 
- 
 
-