Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / env / IConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.env;
12
13 /**
14  * This interface defines constants for use by the builder / compiler interface.
15  */
16 public interface IConstants {
17
18         /*
19          * Modifiers
20          */
21         int AccPublic = 0x0001;
22         int AccPrivate = 0x0002;
23         int AccProtected = 0x0004;
24         int AccStatic = 0x0008;
25         int AccFinal = 0x0010;
26 //      int AccSynchronized = 0x0020;
27 //      int AccVolatile = 0x0040;
28 //      int AccTransient = 0x0080;
29 //      int AccNative = 0x0100;
30 //      int AccInterface = 0x0200;
31 //      int AccAbstract = 0x0400;
32 //      int AccStrictfp = 0x0800;
33
34         /*
35          * Other VM flags.
36          */
37         int AccSuper = 0x0020;
38
39         /**
40          * Extra flags for types and members.
41          */
42 //      int AccSynthetic = 0x20000;
43 //      int AccDeprecated = 0x100000;
44 }