Uses of Class
jellyj.classfile.javaclass.Method

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

Uses of Method in jellyj.classfile.classgen
 

Methods in jellyj.classfile.classgen that return Method
MethodMethodGen.getMethod(int max_stack)
          Get method object.
 

Methods in jellyj.classfile.classgen with parameters of type Method
final voidClassGen.addMethod(Method m)
          Add a method to this class.
final voidClassGen.removeMethod(Method m)
          Remove a method from this class.
 

Uses of Method in jellyj.classfile.javaclass
 

Constructors in jellyj.classfile.javaclass with parameters of type Method
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.
Method.Method(Method c)
          Initialize from another object.
 

Methods in jellyj.classfile.javaclass that return Method
final Method[]JavaClass.getMethods()
          
 

Methods in jellyj.classfile.javaclass with parameters of type Method
final voidJavaClass.setMethods(Method[] methods)
          
voidVisitor.visitMethod(Method obj)
          
 

Uses of Method in jellyj.classfile.util
 

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

Methods in jellyj.classfile.util with parameters of type Method
static voidlistclass.printCode(Method[] methods)
          Dump the disassembled code of all methods in the class.