| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.logicalcobwebs.asm.tree.TryCatchBlockNode
public class TryCatchBlockNode
A node that represents a try catch block.
| Field Summary | |
|---|---|
|  Label | endEnd of the exception handler's scope (exclusive). | 
|  Label | handlerBeginning of the exception handler's code. | 
|  Label | startBeginning of the exception handler's scope (inclusive). | 
|  java.lang.String | typeInternal name of the type of exceptions handled by the handler. | 
| Constructor Summary | |
|---|---|
| TryCatchBlockNode(Label start,
                  Label end,
                  Label handler,
                  java.lang.String type)Constructs a new TryCatchBlockNodeobject. | |
| Method Summary | |
|---|---|
|  void | accept(CodeVisitor cv)Makes the given code visitor visit this try catch block. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public Label start
public Label end
public Label handler
public java.lang.String type
| Constructor Detail | 
|---|
public TryCatchBlockNode(Label start,
                         Label end,
                         Label handler,
                         java.lang.String type)
TryCatchBlockNode object.
start - beginning of the exception handler's scope (inclusive).end - end of the exception handler's scope (exclusive).handler - beginning of the exception handler's code.type - internal name of the type of exceptions handled by the handler,
      or null to catch any exceptions (for "finally" blocks).| Method Detail | 
|---|
public void accept(CodeVisitor cv)
cv - a code visitor.| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||