All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface lti.java.jcf.JcfClassInput

public interface interface JcfClassInput
extends DataInput
JcfClassInput extends the basic data input functionality in DataInput, while adding methods to facilitate reading class file specific data types.


Method Index

 o readCPRef()
Read the index of a constant pool entry.
 o readIntVerbatim()
Read an int value (usually bit flags) that is not a magnitude.
 o readShortMax(int)
Read a short value, where the maximum value that short can have is less than or equal to maxValue.
 o readShortVerbatim()
Read a short value (usually bit flags) that is not a magnitude.

Methods

 o readCPRef
 public abstract short readCPRef() throws IOException
Read the index of a constant pool entry.

Returns:
s The index of the entry.
 o readShortVerbatim
 public abstract short readShortVerbatim() throws IOException
Read a short value (usually bit flags) that is not a magnitude.

 o readShortMax
 public abstract short readShortMax(int maxValue) throws IOException
Read a short value, where the maximum value that short can have is less than or equal to maxValue.

 o readIntVerbatim
 public abstract int readIntVerbatim() throws IOException
Read an int value (usually bit flags) that is not a magnitude.


All Packages  Class Hierarchy  This Package  Previous  Next  Index