|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConstUtf8 | |
org.apache.jdo.impl.enhancer.classfile | |
org.apache.jdo.impl.enhancer.core |
Uses of ConstUtf8 in org.apache.jdo.impl.enhancer.classfile |
Fields in org.apache.jdo.impl.enhancer.classfile declared as ConstUtf8 | |
private ConstUtf8 |
ClassAttribute.attributeName
|
private ConstUtf8 |
ConstClass.theClassName
|
private ConstUtf8 |
ConstString.stringValue
|
private ConstUtf8 |
ConstNameAndType.theName
|
private ConstUtf8 |
ConstNameAndType.typeSignature
|
private ConstUtf8 |
ClassField.fieldName
|
private ConstUtf8 |
ClassField.fieldSignature
|
private ConstUtf8 |
SignatureAttribute.signature
|
private ConstUtf8 |
ClassMethod.methodName
|
private ConstUtf8 |
ClassMethod.methodSignature
|
private ConstUtf8 |
LocalVariable.varName
|
private ConstUtf8 |
LocalVariable.varSig
|
private ConstUtf8 |
SourceFileAttribute.sourceFileName
|
Methods in org.apache.jdo.impl.enhancer.classfile that return ConstUtf8 | |
ConstUtf8 |
ClassAttribute.attrName()
Returns the name of the attribute |
(package private) static ConstUtf8 |
ConstUtf8.read(java.io.DataInputStream input)
|
ConstUtf8 |
ConstantPool.addUtf8(java.lang.String s)
Find or create a utf8 constant in the pool |
ConstUtf8 |
ConstClass.className()
Return the class name |
ConstUtf8 |
ConstString.value()
Return the utf8 string calue |
ConstUtf8 |
ConstNameAndType.name()
Return the name |
ConstUtf8 |
ConstNameAndType.signature()
Return the type signature associated with the name |
ConstUtf8 |
ClassField.name()
Return the name of the field |
ConstUtf8 |
ClassField.signature()
Return the type signature of the field |
abstract ConstUtf8 |
ClassMember.name()
Return the name of the member |
abstract ConstUtf8 |
ClassMember.signature()
Return the type signature of the method |
ConstUtf8 |
SignatureAttribute.signature()
|
ConstUtf8 |
ClassMethod.name()
Return the name of the method |
ConstUtf8 |
ClassMethod.signature()
Return the type signature of the method |
ConstUtf8 |
SourceFileAttribute.fileName()
Returns the source file name The file name should not include directories |
Methods in org.apache.jdo.impl.enhancer.classfile with parameters of type ConstUtf8 | |
(package private) static AnnotatedClassAttribute |
AnnotatedClassAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
void |
ConstClass.changeClass(ConstUtf8 newName)
Change the class reference (not to be done lightly) |
void |
ConstNameAndType.changeSignature(ConstUtf8 newSig)
Modify the signature |
(package private) static AnnotatedMethodAttribute |
AnnotatedMethodAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
CodeEnv env)
|
void |
ClassField.changeName(ConstUtf8 name)
Change the name of the field |
void |
ClassField.changeSignature(ConstUtf8 newSig)
Change the type signature of the field |
(package private) static SignatureAttribute |
SignatureAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
void |
ClassMethod.changeName(ConstUtf8 name)
Change the name of the method |
void |
ClassMethod.changeSignature(ConstUtf8 newSig)
Change the type signature of the method |
(package private) static CodeAttribute |
CodeAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
(package private) static CodeAttribute |
CodeAttribute.read(ConstUtf8 attrName,
int attrLength,
java.io.DataInputStream data,
ConstantPool pool)
|
(package private) static ExceptionsAttribute |
ExceptionsAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
(package private) static ConstantValueAttribute |
ConstantValueAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
(package private) static LineNumberTableAttribute |
LineNumberTableAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
CodeEnv env)
|
(package private) static LocalVariableTableAttribute |
LocalVariableTableAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
CodeEnv env)
|
void |
SourceFileAttribute.setFileName(ConstUtf8 name)
Sets the source file name |
(package private) static SourceFileAttribute |
SourceFileAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
(package private) static SyntheticAttribute |
SyntheticAttribute.read(ConstUtf8 attrName,
java.io.DataInputStream data,
ConstantPool pool)
|
Constructors in org.apache.jdo.impl.enhancer.classfile with parameters of type ConstUtf8 | |
AnnotatedClassAttribute(ConstUtf8 nameAttr,
short version,
short annFlags,
long modTime,
long annTime)
Constructor |
|
ClassAttribute(ConstUtf8 theAttrName)
Constructor |
|
ConstClass(ConstUtf8 cname)
Construct a ConstClass |
|
ConstString(ConstUtf8 s)
|
|
ConstNameAndType(ConstUtf8 n,
ConstUtf8 sig)
|
|
AnnotatedMethodAttribute(ConstUtf8 nameAttr,
short version,
short annFlags,
InsnTarget[] annRanges)
Constructor |
|
ClassField(int accFlags,
ConstUtf8 name,
ConstUtf8 sig,
AttributeVector field_attrs)
Construct a class field object |
|
SignatureAttribute(ConstUtf8 attrName,
ConstUtf8 sig)
Construct a signature attribute |
|
ClassMethod(int accFlags,
ConstUtf8 name,
ConstUtf8 sig,
AttributeVector methodAttrs)
Construct a class method object |
|
CodeAttribute(ConstUtf8 attrName,
int maxStack,
int maxLocals,
Insn code,
ExceptionTable excTable,
AttributeVector codeAttrs)
Constructs a CodeAttribute object for construction from scratch |
|
CodeAttribute(ConstUtf8 attrName,
int maxStack,
int maxLocals,
Insn code,
byte[] codeBytes,
ExceptionTable excTable,
AttributeVector codeAttrs,
CodeEnv codeEnv)
Constructs a CodeAttribute object |
|
CodeAttribute(ConstUtf8 attrName,
byte[] dataBytes,
CodeEnv codeEnv)
Constructs a CodeAttribute object for later disassembly |
|
ExceptionsAttribute(ConstUtf8 attrName,
java.util.Vector excTable)
Constructor |
|
ExceptionsAttribute(ConstUtf8 attrName,
ConstClass exc)
Convenience Constructor - for single exception |
|
ConstantValueAttribute(ConstUtf8 attrName,
ConstValue value)
Construct a constant value attribute |
|
GenericAttribute(ConstUtf8 attrName,
byte[] attrBytes)
constructor |
|
LineNumberTableAttribute(ConstUtf8 nameAttr,
short[] lineNums,
InsnTarget[] targets)
Constructor |
|
LocalVariable(InsnTarget startPC,
InsnTarget endPC,
ConstUtf8 name,
ConstUtf8 sig,
int slot)
Constructor for a local variable |
|
LocalVariableTableAttribute(ConstUtf8 nameAttr,
java.util.Vector lvarTable)
Constructor for a local variable table |
|
SourceFileAttribute(ConstUtf8 attrName,
ConstUtf8 sourceName)
Constructor for a source file attribute |
|
SyntheticAttribute(ConstUtf8 attrName)
Construct a constant value attribute |
Uses of ConstUtf8 in org.apache.jdo.impl.enhancer.core |
Fields in org.apache.jdo.impl.enhancer.core declared as ConstUtf8 | |
private ConstUtf8 |
Builder.codeAttributeUtf8
The constant utf8 string for the CodeAttribute. |
Methods in org.apache.jdo.impl.enhancer.core that return ConstUtf8 | |
private ConstUtf8 |
Builder.getCodeAttributeUtf8()
Returns the utf8 string for the CodeAttribute. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |