|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.objectweb.asm.tree.TryCatchBlockNode
public class TryCatchBlockNode
A node that represents a try catch block.
| 字段摘要 | |
|---|---|
LabelNode |
end
End of the exception handler's scope (exclusive). |
LabelNode |
handler
Beginning of the exception handler's code. |
LabelNode |
start
Beginning of the exception handler's scope (inclusive). |
String |
type
Internal name of the type of exceptions handled by the handler. |
| 构造方法摘要 | |
|---|---|
TryCatchBlockNode(LabelNode start,
LabelNode end,
LabelNode handler,
String type)
Constructs a new TryCatchBlockNode. |
|
| 方法摘要 | |
|---|---|
void |
accept(MethodVisitor mv)
Makes the given visitor visit this try catch block. |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| 字段详细信息 |
|---|
public LabelNode start
public LabelNode end
public LabelNode handler
public String type
| 构造方法详细信息 |
|---|
public TryCatchBlockNode(LabelNode start,
LabelNode end,
LabelNode handler,
String type)
TryCatchBlockNode.
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).| 方法详细信息 |
|---|
public void accept(MethodVisitor mv)
mv - a method visitor.
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||