Makefile fixup
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / env / IConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 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 org.eclipse.jdt.internal.compiler.env;
12
13 /**
14  * This interface defines constants for use by the builder / compiler interface.
15  */
16 public interface IConstants {
17
18         int AccDefault = 0;
19
20         /**
21          * Modifiers
22          */
23         int AccPublic = 0x0001;
24         int AccPrivate = 0x0002;
25         int AccProtected = 0x0004;
26         int AccStatic = 0x0008;
27         int AccFinal = 0x0010;
28         int AccSynchronized = 0x0020;
29         int AccVolatile = 0x0040;
30         int AccBridge = 0x0040;
31         int AccTransient = 0x0080;
32         int AccVarargs = 0x0080;
33         int AccNative = 0x0100;
34         int AccInterface = 0x0200;
35         int AccAbstract = 0x0400;
36         int AccStrictfp = 0x0800;
37         int AccSynthetic = 0x1000;
38
39         /**
40          * Other VM flags.
41          */
42         int AccSuper = 0x0020;
43
44         /**
45          * Extra flags for types and members attributes.
46          */
47         int AccDeprecated = 0x100000;
48         
49 }