|
|||||||||
| Home >> All >> org >> jxcl >> [ cl overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.jxcl.cl
Class CatchData

java.lang.Objectorg.jxcl.cl.CatchData
- public class CatchData
- extends java.lang.Object
Data structure describing an exception handler.
XXX There have been problems associated with generation of
exception handlers. tryEnd should be used to get
a handle of the last instruction in the vertex.
| Field Summary | |
org.apache.bcel.generic.ObjectType |
exception
Type of exception handled. |
org.jxcl.graph.Vertex |
handlerPC
First code vertex in handler. |
org.jxcl.graph.Vertex |
tryEnd
Last code Vertex in try block. |
org.jxcl.graph.Vertex |
tryStart
First code vertex in try block. |
| Constructor Summary | |
CatchData(org.jxcl.graph.Vertex start,
org.jxcl.graph.Vertex end,
org.jxcl.graph.Vertex handler,
org.apache.bcel.generic.ObjectType exc)
The information needed to set up an exception handler. |
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
tryStart
public org.jxcl.graph.Vertex tryStart
- First code vertex in try block.
tryEnd
public org.jxcl.graph.Vertex tryEnd
- Last code Vertex in try block.
handlerPC
public org.jxcl.graph.Vertex handlerPC
- First code vertex in handler.
exception
public org.apache.bcel.generic.ObjectType exception
- Type of exception handled.
| Constructor Detail |
CatchData
public CatchData(org.jxcl.graph.Vertex start, org.jxcl.graph.Vertex end, org.jxcl.graph.Vertex handler, org.apache.bcel.generic.ObjectType exc)
- The information needed to set up an exception handler.
|
|||||||||
| Home >> All >> org >> jxcl >> [ cl overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
org.jxcl.cl.CatchData