1 2 package org.quilt.cl; 3 4 import org.apache.bcel.generic.*; 5 import org.quilt.graph.Vertex; 6 7 16 public class CatchData { 17 18 19 public Vertex tryStart; 20 21 public Vertex tryEnd; 22 23 public Vertex handlerPC; 24 25 public ObjectType exception; 26 27 28 29 public CatchData (Vertex start, Vertex end, Vertex handler, 30 ObjectType exc) { 31 tryStart = start; 32 tryEnd = end; 33 handlerPC = handler; 34 exception = exc; 35 } 36 } 37 38 39 40 41 42 | Popular Tags |