Uses of Class
jellyj.classfile.javaclass.Field

Packages that use Field
jellyj.classfile.classgen 
jellyj.classfile.javaclass 
jellyj.classfile.util 

Uses of Field in jellyj.classfile.classgen
 

Methods in jellyj.classfile.classgen with parameters of type Field
final voidClassGen.addField(Field f)
          Add a field to this class.
final voidClassGen.removeField(Field f)
          Remove a field to this class.
 

Uses of Field in jellyj.classfile.javaclass
 

Constructors in jellyj.classfile.javaclass with parameters of type Field
Field.Field(Field c)
          Initialize from another object.
JavaClass.JavaClass(int class_name_index, int superclass_name_index, String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes)
          Constructor gets all contents as arguments.
 

Methods in jellyj.classfile.javaclass that return Field
final Field[]JavaClass.getFields()
          
 

Methods in jellyj.classfile.javaclass with parameters of type Field
final voidJavaClass.setFields(Field[] fields)
          
voidVisitor.visitField(Field obj)
          
 

Uses of Field in jellyj.classfile.util
 

Constructors in jellyj.classfile.util with parameters of type Field
MethodHTML.MethodHTML(String dir, String class_name, Method[] methods, Field[] fields, ConstantHTML constant_html, AttributeHTML attribute_html)