1 package persistence.antlr; 2 3 8 9 import persistence.antlr.collections.impl.Vector; 10 11 class ExceptionSpec { 12 protected Token label; 15 16 protected Vector handlers; 18 19 20 public ExceptionSpec(Token label_) { 21 label = label_; 22 handlers = new Vector(); 23 } 24 25 public void addHandler(ExceptionHandler handler) { 26 handlers.appendElement(handler); 27 } 28 } 29 | Popular Tags |