All Packages Class Hierarchy This Package Previous Next Index
Class shai.vmutils.FieldEntry
java.lang.Object
|
+----shai.vmutils.FieldEntry
- public class FieldEntry
- extends Object
This class contains the representation of a field in the class.
-
fieldAttributes
-
-
fieldMode
-
-
fieldName
-
-
fieldType
-
-
FieldEntry(DataInputStream, ConstantPoolEntry[])
- This method loads the field into memory from the class file.
-
getFieldAttributes()
- This method returns the fields attributes.
-
getFieldName()
- This method returns the offset of the field name in the constant pool.
-
getFieldType()
- This method returns the offset of the field type in the constant pool.
-
save(DataOutputStream)
- This method was created by a SmartGuide.
fieldName
int fieldName
fieldType
int fieldType
fieldAttributes
AttributeEntry fieldAttributes
fieldMode
int fieldMode
FieldEntry
public FieldEntry(DataInputStream dataStream,
ConstantPoolEntry constantPool[]) throws IOException, ClassFormatError
- This method loads the field into memory from the class file.
- Parameters:
- dataStream - java.io.DataInputStream
- ConstantPoolEntry - constantPool[]
- Throws: IOException
- The exception description.
getFieldAttributes
public AttributeEntry getFieldAttributes()
- This method returns the fields attributes.
- Returns:
- shai.vmutils.AttributeEntry
getFieldName
public int getFieldName()
- This method returns the offset of the field name in the constant pool.
- Returns:
- java.lang.String
getFieldType
public int getFieldType()
- This method returns the offset of the field type in the constant pool.
- Returns:
- java.lang.String
save
public void save(DataOutputStream outputStream) throws IOException
- This method was created by a SmartGuide.
- Parameters:
- outputStream - java.io.DataOutputStream
- Throws: IOException
- The exception description.
All Packages Class Hierarchy This Package Previous Next Index