Uses of Class
classUtils.javassist.CtMethod.ConstParameter

Packages that use CtMethod.ConstParameter
classUtils.javassist   
 

Uses of CtMethod.ConstParameter in classUtils.javassist
 

Methods in classUtils.javassist that return CtMethod.ConstParameter
static CtMethod.ConstParameter CtMethod.ConstParameter.integer(int i)
          Makes an integer constant.
static CtMethod.ConstParameter CtMethod.ConstParameter.integer(long i)
          Makes a long integer constant.
static CtMethod.ConstParameter CtMethod.ConstParameter.string(java.lang.String s)
          Makes an String constant.
 

Methods in classUtils.javassist with parameters of type CtMethod.ConstParameter
static CtConstructor CtNewConstructor.make(CompileTimeClass[] parameters, CompileTimeClass[] exceptions, int howto, CtMethod body, CtMethod.ConstParameter cparam, CompileTimeClass declaring)
          Creates a public constructor.
 void CtMethod.setWrappedBody(CtMethod mbody, CtMethod.ConstParameter constParam)
          Replace a method body with a new method body wrapping the given method.
static CtMethod CtNewMethod.wrapped(CompileTimeClass returnType, java.lang.String mname, CompileTimeClass[] parameterTypes, CompileTimeClass[] exceptionTypes, CtMethod body, CtMethod.ConstParameter constParam, CompileTimeClass declaring)
          Creates a wrapped method.