FileDocCategorySizeDatePackage
ExceptionEntry.javaAPI DocJ2ME CLDC 1.11727Wed Feb 05 15:56:02 GMT 2003components

ExceptionEntry

public class ExceptionEntry extends Object

Fields Summary
public ClassConstant
catchType
public int
startPC
public int
endPC
public int
handlerPC
public static final int
size
Constructors Summary
ExceptionEntry(int s, int e, int h, ClassConstant c)

 // bytes in class files

             
    startPC = s;
    endPC = e;
    handlerPC= h;
    catchType = c;
    
Methods Summary
public voidcountConstantReferences()

    if ( catchType != null )
        catchType.incReference();
    
public voidexternalize(ConstantPool p)

    // do nothing.
    
public voidwrite(java.io.DataOutput o)

    o.writeShort( startPC );
    o.writeShort( endPC );
    o.writeShort( handlerPC );
    o.writeShort( (catchType==null) ? 0 : catchType.index );