| java.lang.Object javassist.compiler.AccessorMaker
AccessorMaker | public class AccessorMaker (Code) | | AccessorMaker maintains accessors to private members of an enclosing
class. It is necessary for compiling a method in an inner class.
|
getMethodAccessor | public String getMethodAccessor(String name, String desc, String accDesc, MethodInfo orig) throws CompileError(Code) | | Returns the name of the method for accessing a private method.
Parameters: name - the name of the private method. Parameters: desc - the descriptor of the private method. Parameters: accDesc - the descriptor of the accessor method. The firstparameter type is clazz .If the private method is static,accDesc must be equal to desc . Parameters: orig - the method info of the private method. |
|
|