001 package railo.transformer.bytecode.visitor; 002 003 import org.objectweb.asm.Label; 004 005 public class TryCatchFinallyData { 006 //private Label tryBegin = new Label(); 007 //private Label tryEndCatchBegin = new Label(); 008 private Label label = new Label(); 009 //private Label finallyEnd = new Label(); 010 011 public TryCatchFinallyData(Label l) { 012 this.label=l; 013 } 014 015 /** 016 * @return the finallyBegin 017 */ 018 public Label getFinallyBegin() { 019 return label; 020 } 021 }