1 30 package com.tc.asm.tree; 31 32 import com.tc.asm.Label; 33 import com.tc.asm.MethodVisitor; 34 35 40 public class TryCatchBlockNode { 41 42 45 public Label start; 46 47 50 public Label end; 51 52 55 public Label handler; 56 57 61 public String type; 62 63 73 public TryCatchBlockNode( 74 final Label start, 75 final Label end, 76 final Label handler, 77 final String type) 78 { 79 this.start = start; 80 this.end = end; 81 this.handler = handler; 82 this.type = type; 83 } 84 85 90 public void accept(final MethodVisitor mv) { 91 mv.visitTryCatchBlock(start, end, handler, type); 92 } 93 } 94 | Popular Tags |