Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.techtrader.modules.tools.bytecode.BCMethod

Uses of BCMethod in com.techtrader.modules.tools.bytecode
 

Methods in com.techtrader.modules.tools.bytecode that return BCMethod
 BCMethod MethodInstruction.getMethod()
          If the method is a member of the current class, then this method will retrieve the BCMethod object for it; otherwise it will return null.
private  BCMethod ClassConstantInstruction.addClassLoadMethod()
           
 BCMethod[] BCClass.getMethods()
          Get all the methods of this class.
 BCMethod BCClass.getMethod(java.lang.String name)
          Get the method with the given name.
 BCMethod[] BCClass.getMethods(java.lang.String name)
          Get all methods with the given name.
 BCMethod BCClass.getMethod(java.lang.String name, java.lang.String[] params)
          Get the method with the given name and param types.
 BCMethod BCClass.getMethod(java.lang.String name, java.lang.Class[] params)
          Get the method with the given name and param types.
 BCMethod BCClass.importMethod(BCMethod method)
          Import the given method from another class, or, if the method belongs to this class, add a duplicate of it (in this case, it is an error not to change the method name or parameter types).
 BCMethod BCClass.addMethod()
          Add a method to this class.
 BCMethod BCClass.addMethod(java.lang.String name, java.lang.String returnType, java.lang.String[] paramTypes)
          Add a method to this class.
 BCMethod BCClass.addMethod(java.lang.String name, java.lang.Class returnType, java.lang.Class[] paramTypes)
          Add a method to this class.
 BCMethod BCClass.addDefaultConstructor()
          Add a default constructor to this class.
 

Methods in com.techtrader.modules.tools.bytecode with parameters of type BCMethod
 MethodInstruction MethodInstruction.setMethod(BCMethod method)
          Set the method to operate on.
 BCMethod BCClass.importMethod(BCMethod method)
          Import the given method from another class, or, if the method belongs to this class, add a duplicate of it (in this case, it is an error not to change the method name or parameter types).
 boolean BCClass.removeMethod(BCMethod method)
          Removes a method from this class.