1 /*******************************************************************************
2 * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.env;
14 * This interface defines constants for use by the builder / compiler interface.
16 public interface IConstants {
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;
37 int AccSuper = 0x0020;
40 * Extra flags for types and members.
42 int AccSynthetic = 0x20000;
43 int AccDeprecated = 0x100000;