KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > jdo > LifecycleEvent


1 // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
2
// Jad home page: http://www.geocities.com/kpdus/jad.html
3
// Decompiler options: packimports(3) noctor space
4
// Source File Name: LifecycleEvent.java
5

6 package javax.jdo;
7
8 import java.util.EventObject JavaDoc;
9
10 public class LifecycleEvent extends EventObject JavaDoc {
11
12     public int getEventType() {
13         return eventType;
14     }
15
16     public LifecycleEvent(Object JavaDoc 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