javassist

Class CtMethod.ConstParameter

public static class CtMethod.ConstParameter extends Object

Instances of this class represent a constant parameter. They are used to specify the parameter given to the methods created by CtNewMethod.wrapped().

See Also: setWrappedBody (CtClass,String,CtClass[],CtClass[],CtMethod,CtMethod.ConstParameter,CtClass) (CtClass[],CtClass[],int,CtMethod,CtMethod.ConstParameter,CtClass)

Method Summary
static CtMethod.ConstParameterinteger(int i)
Makes an integer constant.
static CtMethod.ConstParameterinteger(long i)
Makes a long integer constant.
static CtMethod.ConstParameterstring(String s)
Makes an String constant.

Method Detail

integer

public static CtMethod.ConstParameter integer(int i)
Makes an integer constant.

Parameters: i the constant value.

integer

public static CtMethod.ConstParameter integer(long i)
Makes a long integer constant.

Parameters: i the constant value.

string

public static CtMethod.ConstParameter string(String s)
Makes an String constant.

Parameters: s the constant value.

Javassist, a Java-bytecode translator toolkit.
Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.