Uses of Class
org.apache.bcel.classfile.Method

Packages that use Method
org.apache.bcel.classfile This package contains the classes that describe the structure of a Java class file and a class file parser.  
org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions.  
org.apache.bcel.util This package contains utility classes for the Byte Code Engineering Library, 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 clases at run time  
org.apache.bcel.verifier.statics Provides PassVerifier classes used internally by JustIce.  
 

Uses of Method in org.apache.bcel.classfile
 

Methods in org.apache.bcel.classfile that return Method
 Method Method.copy(ConstantPool constant_pool)
           
 Method[] JavaClass.getMethods()
           
 Method JavaClass.getMethod(java.lang.reflect.Method m)
           
 

Methods in org.apache.bcel.classfile with parameters of type Method
 void Visitor.visitMethod(Method obj)
           
 void JavaClass.setMethods(Method[] methods)
           
 void EmptyVisitor.visitMethod(Method obj)
           
 void DescendingVisitor.visitMethod(Method method)
           
 

Constructors in org.apache.bcel.classfile with parameters of type Method
Method(Method c)
          Initialize from another object.
JavaClass(int class_name_index, int superclass_name_index, java.lang.String file_name, int major, int minor, int access_flags, ConstantPool constant_pool, int[] interfaces, Field[] fields, Method[] methods, Attribute[] attributes, byte source)
          Constructor gets all contents as arguments.
JavaClass(int class_name_index, int superclass_name_index, java.lang.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.
 

Uses of Method in org.apache.bcel.generic
 

Methods in org.apache.bcel.generic that return Method
 Method MethodGen.getMethod()
          Get method object.
 Method ClassGen.containsMethod(java.lang.String name, java.lang.String signature)
           
 Method[] ClassGen.getMethods()
           
 Method ClassGen.getMethodAt(int pos)
           
 

Methods in org.apache.bcel.generic with parameters of type Method
 void ClassGen.addMethod(Method m)
          Add a method to this class.
 void ClassGen.removeMethod(Method m)
          Remove a method from this class.
 void ClassGen.replaceMethod(Method old, Method new_)
          Replace given method with new one.
 void ClassGen.replaceMethod(Method old, Method new_)
          Replace given method with new one.
 void ClassGen.setMethods(Method[] methods)
           
 void ClassGen.setMethodAt(Method method, int pos)
           
 

Constructors in org.apache.bcel.generic with parameters of type Method
MethodGen(Method m, java.lang.String class_name, ConstantPoolGen cp)
          Instantiate from existing method.
 

Uses of Method in org.apache.bcel.util
 

Methods in org.apache.bcel.util with parameters of type Method
 void BCELifier.visitMethod(Method method)
           
 

Uses of Method in org.apache.bcel.verifier.statics
 

Methods in org.apache.bcel.verifier.statics with parameters of type Method
 void StringRepresentation.visitMethod(Method obj)
           
 



Copyright © 2002-2003 Apache Software Foundation. All Rights Reserved.