private BCField |
ClassConstantInstruction.addClassField(java.lang.String name) |
Adds a static field to hold the loaded class constant.
|
BCField |
BCClass.declareField(java.lang.String name,
java.lang.Class type) |
Add a field to this class.
|
BCField |
BCClass.declareField(java.lang.String name,
java.lang.String type) |
Add a field to this class.
|
BCField |
BCClass.declareField(java.lang.String name,
BCClass type) |
Add a field to this class.
|
BCField |
BCClass.declareField(BCField field) |
Import the information from given field as a new field in this class.
|
BCField |
BCClass.getDeclaredField(java.lang.String name) |
Return the declared field with the given name, or null if none.
|
BCField[] |
BCClass.getDeclaredFields() |
Return all the declared fields of this class, or an empty array if none.
|
BCField |
ConstantValue.getField() |
Return the owning field.
|
BCField |
FieldInstruction.getField() |
Return the field this instruction operates on, or null if not set.
|
BCField[] |
BCClass.getFields() |
Return all the fields of this class, including those of all
superclasses, or an empty array if none.
|
BCField[] |
BCClass.getFields(java.lang.String name) |
Return all fields with the given name, including those of all
superclasses, or an empty array if none.
|