01: /*
02: *
03: *
04: * Portions Copyright 2000-2007 Sun Microsystems, Inc. All Rights
05: * Reserved. Use is subject to license terms.
06: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
07: *
08: * This program is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU General Public License version
10: * 2 only, as published by the Free Software Foundation.
11: *
12: * This program is distributed in the hope that it will be useful, but
13: * WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License version 2 for more details (a copy is
16: * included at /legal/license.txt).
17: *
18: * You should have received a copy of the GNU General Public License
19: * version 2 along with this work; if not, write to the Free Software
20: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21: * 02110-1301 USA
22: *
23: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
24: * Clara, CA 95054 or visit www.sun.com if you need additional
25: * information or have any questions.
26: */
27:
28: /*
29: * Copyright (C) 2002-2003 PalmSource, Inc. All Rights Reserved.
30: */
31:
32: package javax.microedition.pim;
33:
34: /**
35: * This class is defined by the JSR-75 specification
36: * <em>PDA Optional Packages for the J2ME™ Platform</em>
37: */
38: // JAVADOC COMMENT ELIDED
39: public interface Event extends PIMItem {
40: // JAVADOC COMMENT ELIDED
41: public static final int ALARM = 100;
42: // JAVADOC COMMENT ELIDED
43: public static final int CLASS = 101;
44: // JAVADOC COMMENT ELIDED
45: public static final int END = 102;
46: // JAVADOC COMMENT ELIDED
47: public static final int LOCATION = 103;
48: // JAVADOC COMMENT ELIDED
49: public static final int NOTE = 104;
50: // JAVADOC COMMENT ELIDED
51: public static final int REVISION = 105;
52: // JAVADOC COMMENT ELIDED
53: public static final int START = 106;
54: // JAVADOC COMMENT ELIDED
55: public static final int SUMMARY = 107;
56: // JAVADOC COMMENT ELIDED
57: public static final int UID = 108;
58: // JAVADOC COMMENT ELIDED
59: public static final int CLASS_CONFIDENTIAL = 200;
60: // JAVADOC COMMENT ELIDED
61: public static final int CLASS_PRIVATE = 201;
62: // JAVADOC COMMENT ELIDED
63: public static final int CLASS_PUBLIC = 202;
64:
65: // JAVADOC COMMENT ELIDED
66: public abstract RepeatRule getRepeat();
67:
68: // JAVADOC COMMENT ELIDED
69: public abstract void setRepeat(RepeatRule value);
70: }
|