| org.eclipse.jdt.core.util.IClassFileAttribute
All known Subclasses: org.eclipse.jdt.internal.core.util.ClassFileAttribute,
IClassFileAttribute | public interface IClassFileAttribute (Code) | | This class represents a generic class file attribute. It is intended to be extended
for any new attribute.
since: 2.0 |
Method Summary | |
long | getAttributeLength() Answer back the attribute length as specified
in the JVM specifications. | char[] | getAttributeName() Answer back the attribute name as specified
in the JVM specifications. | int | getAttributeNameIndex() Answer back the attribute name index in the constant pool as specified
in the JVM specifications. |
getAttributeLength | long getAttributeLength()(Code) | | Answer back the attribute length as specified
in the JVM specifications.
the attribute length |
getAttributeName | char[] getAttributeName()(Code) | | Answer back the attribute name as specified
in the JVM specifications.
the attribute name |
getAttributeNameIndex | int getAttributeNameIndex()(Code) | | Answer back the attribute name index in the constant pool as specified
in the JVM specifications.
the attribute name index in the constant pool |
|
|