All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.wizards.builder.compiler.field_info

java.lang.Object
   |
   +----com.sun.wizards.builder.compiler.ClassConstants
           |
           +----com.sun.wizards.builder.compiler.field_info

public class field_info
extends ClassConstants
field_info is a class that represents a class variable from a java class file. This class also has the ability to read its entry from a class file and write its entry to a class file.

The information used to write this class was obtained from the book "The Java Virtual Machine Specification", pages 84 - 118.

Note: The use of all lower-case variable names with underscores is done to show an exact translation from the Virtual Machine Specification.


Constructor Index

 o field_info(DataInput)
Creates a new field_info object, initialized by the specified input stream.

Method Index

 o read(DataInput)
Initializes this field_info object from the specified input stream.
 o write(DataOutput)
Writes the initialization data for this object to the specified output stream.

Constructors

 o field_info
 public field_info(DataInput in)
Creates a new field_info object, initialized by the specified input stream.

Parameters:
in - The input stream containing initialization data for this object.

Methods

 o read
 public void read(DataInput in)
Initializes this field_info object from the specified input stream.

Parameters:
in - The input stream containing initialization data for this object.
 o write
 public void write(DataOutput out)
Writes the initialization data for this object to the specified output stream.

Parameters:
out - The output stream to which this object's initialization data should be written.

All Packages  Class Hierarchy  This Package  Previous  Next  Index