All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface lti.java.jcf.JcfClassOutput

public interface interface JcfClassOutput
extends DataOutput
JcfClassOutput extends the basic data output functionality in DataOutput, while adding methods to facilitate writing class file specific data types.


Method Index

 o writeCPRef(int)
Write the index of a constant pool entry.
 o writeIntVerbatim(int)
Write an int value (usually bit flags) that is not a magnitude.
 o writeShortMax(int, int)
Write a short value, where the maximum value that short can have is less than or equal to maxValue.
 o writeShortVerbatim(int)
Write a short value (usually bit flags) that is not a magnitude.

Methods

 o writeCPRef
 public abstract void writeCPRef(int cpIndex) throws IOException
Write the index of a constant pool entry.

Parameters:
cpIndex - The index of the entry.
 o writeShortVerbatim
 public abstract void writeShortVerbatim(int value) throws IOException
Write a short value (usually bit flags) that is not a magnitude.

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

 o writeIntVerbatim
 public abstract void writeIntVerbatim(int value) throws IOException
Write an int value (usually bit flags) that is not a magnitude.


All Packages  Class Hierarchy  This Package  Previous  Next  Index