1 6 package javax.jdo; 7 8 import java.util.EventObject ; 9 10 public class LifecycleEvent extends EventObject { 11 12 public int getEventType() { 13 return eventType; 14 } 15 16 public LifecycleEvent(Object source, int eventType) { 17 super(source); 18 this.eventType = eventType; 19 } 20 21 public static final int CREATE = 0; 22 23 public static final int LOAD = 1; 24 25 public static final int STORE = 2; 26 27 public static final int CLEAR = 3; 28 29 public static final int DELETE = 4; 30 31 public static final int DIRTY = 5; 32 33 int eventType; 34 } | Popular Tags |