Uses of Class
org.apache.bcel.classfile.Field
-
Packages that use Field Package Description org.apache.bcel.classfile Classes that describe the structure of a Java class file and a class file parser.org.apache.bcel.generic Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects and byte code instructions.org.apache.bcel.util Utility classes for the Apache Byte Code Engineering Library (BCEL), namely: Collection classes for JavaClass objects A converter for class files to HTML A tool to find instructions patterns via regular expressions A class to find classes as defined in the CLASSPATH A class loader that allows to create classes at run timeorg.apache.bcel.verifier.statics PassVerifier classes used internally by JustIce.org.apache.bcel.verifier.structurals A PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect. -
-
Uses of Field in org.apache.bcel.classfile
Fields in org.apache.bcel.classfile declared as Field Modifier and Type Field Description static Field[]Field. EMPTY_ARRAYEmpty array constant.(package private) static Field[]Field. EMPTY_FIELD_ARRAYEmpty array.private Field[]ClassParser. fieldsprivate Field[]JavaClass. fieldsFields in org.apache.bcel.classfile with type parameters of type Field Modifier and Type Field Description private static BCELComparator<Field>Field. bcelComparatorMethods in org.apache.bcel.classfile that return Field Modifier and Type Method Description FieldField. copy(ConstantPool constantPool)FieldJavaClass. findField(java.lang.String fieldName, Type fieldType)Finds a visible field by name and type in this class and its super classes.Field[]JavaClass. getFields()Methods in org.apache.bcel.classfile that return types with arguments of type Field Modifier and Type Method Description static BCELComparator<Field>Field. getComparator()Methods in org.apache.bcel.classfile with parameters of type Field Modifier and Type Method Description voidJavaClass. setFields(Field[] fields)voidDescendingVisitor. visitField(Field field)voidEmptyVisitor. visitField(Field obj)voidVisitor. visitField(Field obj)Method parameters in org.apache.bcel.classfile with type arguments of type Field Modifier and Type Method Description static voidField. setComparator(BCELComparator<Field> comparator)Constructors in org.apache.bcel.classfile with parameters of type Field Constructor Description Field(Field c)Initialize from another object.JavaClass(int classNameIndex, int superclassNameIndex, java.lang.String fileName, int major, int minor, int accessFlags, ConstantPool constantPool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes)Constructor gets all contents as arguments.JavaClass(int classNameIndex, int superclassNameIndex, java.lang.String fileName, int major, int minor, int accessFlags, ConstantPool constantPool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes, byte source)Constructor gets all contents as arguments. -
Uses of Field in org.apache.bcel.generic
Fields in org.apache.bcel.generic with type parameters of type Field Modifier and Type Field Description private java.util.List<Field>ClassGen. fieldListMethods in org.apache.bcel.generic that return Field Modifier and Type Method Description FieldClassGen. containsField(java.lang.String name)FieldFieldGen. getField()Gets field object after having set up all necessary values.Field[]ClassGen. getFields()Methods in org.apache.bcel.generic with parameters of type Field Modifier and Type Method Description voidClassGen. addField(Field f)Add a field to this class.booleanClassGen. containsField(Field f)voidClassGen. removeField(Field f)Remove a field to this class.voidClassGen. replaceField(Field old, Field newField)Replace given field with new one.Constructors in org.apache.bcel.generic with parameters of type Field Constructor Description FieldGen(Field field, ConstantPoolGen cp)Instantiate from existing field. -
Uses of Field in org.apache.bcel.util
Methods in org.apache.bcel.util with parameters of type Field Modifier and Type Method Description voidBCELifier. visitField(Field field)private voidMethodHTML. writeField(Field field)Print field of class.Constructors in org.apache.bcel.util with parameters of type Field Constructor Description MethodHTML(java.lang.String dir, java.lang.String className, Method[] methods, Field[] fields, ConstantHTML constantHtml, AttributeHTML attributeHtml, java.nio.charset.Charset charset) -
Uses of Field in org.apache.bcel.verifier.statics
Methods in org.apache.bcel.verifier.statics with parameters of type Field Modifier and Type Method Description voidPass2Verifier.CPESSC_Visitor. visitField(Field obj)voidStringRepresentation. visitField(Field obj) -
Uses of Field in org.apache.bcel.verifier.structurals
Methods in org.apache.bcel.verifier.structurals that return Field Modifier and Type Method Description private FieldInstConstraintVisitor. visitFieldInstructionInternals(FieldInstruction o)
-