Package gnu.bytecode
Interface AttrContainer
-
- All Known Implementing Classes:
ClassType,CodeAttr,Field,Method,PairClassType
public interface AttrContainerAn interface for objects that (may) contain Attribute objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributegetAttributes()Get the (first) Attribute of this container.ConstantPoolgetConstants()voidsetAttributes(Attribute attribute)Set the (list of) Attributes of this container.
-
-
-
Method Detail
-
getAttributes
Attribute getAttributes()
Get the (first) Attribute of this container.
-
setAttributes
void setAttributes(Attribute attribute)
Set the (list of) Attributes of this container.
-
getConstants
ConstantPool getConstants()
-
-