Uses of Class
javassist.bytecode.ConstPool

Packages that use ConstPool
javassist.bytecode Bytecode-level API. 
javassist.bytecode.annotation Bytecode-level Annotations API. 
 

Uses of ConstPool in javassist.bytecode
 

Methods in javassist.bytecode that return ConstPool
 ConstPool AttributeInfo.getConstPool()
          Returns a constant pool table.
 ConstPool ClassFile.getConstPool()
          Returns a constant pool table.
 ConstPool Bytecode.getConstPool()
          Gets a constant pool table.
 ConstPool FieldInfo.getConstPool()
          Returns the constant pool table used by this field_info.
 ConstPool MethodInfo.getConstPool()
          Returns a constant pool table used by this method.
 

Methods in javassist.bytecode with parameters of type ConstPool
 AttributeInfo EnclosingMethodAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo SourceFileAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo AttributeInfo.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 ExceptionTable ExceptionTable.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy of this exception_table[].
 AttributeInfo SignatureAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo InnerClassesAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo LineNumberAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo LocalVariableAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo DeprecatedAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo StackMapTable.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo SyntheticAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo AnnotationsAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Copies this attribute and returns a new copy.
 AttributeInfo CodeAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo ConstantAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo ExceptionsAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Makes a copy.
 AttributeInfo AnnotationDefaultAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Copies this attribute and returns a new copy.
 AttributeInfo ParameterAnnotationsAttribute.copy(ConstPool newCp, java.util.Map classnames)
          Copies this attribute and returns a new copy.
 int ConstPool.copy(int n, ConstPool dest, java.util.Map classnames)
          Copies the n-th item in this ConstPool object into the destination ConstPool object.
 

Constructors in javassist.bytecode with parameters of type ConstPool
AnnotationDefaultAttribute(ConstPool cp)
          Constructs an empty AnnotationDefault_attribute.
AnnotationDefaultAttribute(ConstPool cp, byte[] info)
          Constructs an AnnotationDefault_attribute.
AnnotationsAttribute(ConstPool cp, java.lang.String attrname)
          Constructs an empty Runtime(In)VisisbleAnnotations_attribute.
AnnotationsAttribute(ConstPool cp, java.lang.String attrname, byte[] info)
          Constructs a Runtime(In)VisisbleAnnotations_attribute.
AttributeInfo(ConstPool cp, java.lang.String attrname, byte[] attrinfo)
          Constructs an attribute_info structure.
Bytecode(ConstPool cp)
          Constructs a Bytecode object with an empty bytecode sequence.
Bytecode(ConstPool cp, int stacksize, int localvars)
          Constructs a Bytecode object with an empty bytecode sequence.
CodeAttribute(ConstPool cp, int stack, int locals, byte[] code, ExceptionTable etable)
          Constructs a Code_attribute.
ConstantAttribute(ConstPool cp, int index)
          Constructs a ConstantValue attribute.
DeprecatedAttribute(ConstPool cp)
          Constructs a Deprecated attribute.
EnclosingMethodAttribute(ConstPool cp, java.lang.String className)
          Constructs an EnclosingMethod attribute.
EnclosingMethodAttribute(ConstPool cp, java.lang.String className, java.lang.String methodName, java.lang.String methodDesc)
          Constructs an EnclosingMethod attribute.
ExceptionsAttribute(ConstPool cp)
          Constructs a new exceptions attribute.
ExceptionTable(ConstPool cp)
          Constructs an exception_table[].
FieldInfo(ConstPool cp, java.lang.String fieldName, java.lang.String desc)
          Constructs a field_info structure.
InnerClassesAttribute(ConstPool cp)
          Constructs an empty InnerClasses attribute.
LocalVariableAttribute(ConstPool cp)
          Constructs an empty LocalVariableTable.
LocalVariableAttribute(ConstPool cp, java.lang.String name)
          Constructs an empty LocalVariableTable.
MethodInfo(ConstPool cp, java.lang.String methodname, MethodInfo src, java.util.Map classnameMap)
          Constructs a copy of method_info structure.
MethodInfo(ConstPool cp, java.lang.String methodname, java.lang.String desc)
          Constructs a method_info structure.
ParameterAnnotationsAttribute(ConstPool cp, java.lang.String attrname)
          Constructs an empty Runtime(In)VisisbleParameterAnnotations_attribute.
ParameterAnnotationsAttribute(ConstPool cp, java.lang.String attrname, byte[] info)
          Constructs a Runtime(In)VisisbleParameterAnnotations_attribute.
SignatureAttribute(ConstPool cp, java.lang.String signature)
          Constructs a Signature attribute.
SourceFileAttribute(ConstPool cp, java.lang.String filename)
          Constructs a SourceFile attribute.
SyntheticAttribute(ConstPool cp)
          Constructs a Synthetic attribute.
 

Uses of ConstPool in javassist.bytecode.annotation
 

Methods in javassist.bytecode.annotation that return ConstPool
 ConstPool AnnotationsWriter.getConstPool()
          Obtains the constant pool given to the constructor.
 

Methods in javassist.bytecode.annotation with parameters of type ConstPool
static MemberValue Annotation.createMemberValue(ConstPool cp, CtClass type)
          Makes an instance of MemberValue.
 

Constructors in javassist.bytecode.annotation with parameters of type ConstPool
Annotation(ConstPool cp, CtClass clazz)
          Constructs an annotation that can be accessed through the interface represented by clazz.
Annotation(int type, ConstPool cp)
          Constructs an annotation including no members.
Annotation(java.lang.String typeName, ConstPool cp)
          Constructs an annotation including no members.
AnnotationMemberValue(Annotation a, ConstPool cp)
          Constructs an annotation member.
AnnotationMemberValue(ConstPool cp)
          Constructs an annotation member.
AnnotationsWriter(java.io.OutputStream os, ConstPool cp)
          Constructs with the given output stream.
ArrayMemberValue(ConstPool cp)
          Constructs an array.
ArrayMemberValue(MemberValue t, ConstPool cp)
          Constructs an array.
BooleanMemberValue(boolean b, ConstPool cp)
          Constructs a boolean constant value.
BooleanMemberValue(ConstPool cp)
          Constructs a boolean constant value.
BooleanMemberValue(int index, ConstPool cp)
          Constructs a boolean constant value.
ByteMemberValue(byte b, ConstPool cp)
          Constructs a byte constant value.
ByteMemberValue(ConstPool cp)
          Constructs a byte constant value.
ByteMemberValue(int index, ConstPool cp)
          Constructs a byte constant value.
CharMemberValue(char c, ConstPool cp)
          Constructs a char constant value.
CharMemberValue(ConstPool cp)
          Constructs a char constant value.
CharMemberValue(int index, ConstPool cp)
          Constructs a char constant value.
ClassMemberValue(ConstPool cp)
          Constructs a class value.
ClassMemberValue(int index, ConstPool cp)
          Constructs a class value.
ClassMemberValue(java.lang.String className, ConstPool cp)
          Constructs a class value.
DoubleMemberValue(ConstPool cp)
          Constructs a double constant value.
DoubleMemberValue(double d, ConstPool cp)
          Constructs a double constant value.
DoubleMemberValue(int index, ConstPool cp)
          Constructs a double constant value.
EnumMemberValue(ConstPool cp)
          Constructs an enum constant value.
EnumMemberValue(int type, int value, ConstPool cp)
          Constructs an enum constant value.
FloatMemberValue(ConstPool cp)
          Constructs a float constant value.
FloatMemberValue(float f, ConstPool cp)
          Constructs a float constant value.
FloatMemberValue(int index, ConstPool cp)
          Constructs a float constant value.
IntegerMemberValue(ConstPool cp)
          Constructs an int constant value.
IntegerMemberValue(ConstPool cp, int value)
          Constructs an int constant value.
IntegerMemberValue(int index, ConstPool cp)
          Constructs an int constant value.
LongMemberValue(ConstPool cp)
          Constructs a long constant value.
LongMemberValue(int index, ConstPool cp)
          Constructs a long constant value.
LongMemberValue(long j, ConstPool cp)
          Constructs a long constant value.
ShortMemberValue(ConstPool cp)
          Constructs a short constant value.
ShortMemberValue(int index, ConstPool cp)
          Constructs a short constant value.
ShortMemberValue(short s, ConstPool cp)
          Constructs a short constant value.
StringMemberValue(ConstPool cp)
          Constructs a string constant value.
StringMemberValue(int index, ConstPool cp)
          Constructs a string constant value.
StringMemberValue(java.lang.String str, ConstPool cp)
          Constructs a string constant value.
 



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