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
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;
23 int AccPrivate = 0x0002;
25 int AccProtected = 0x0004;
27 int AccStatic = 0x0008;
29 int AccFinal = 0x0010;
31 // int AccSynchronized = 0x0020;
32 // int AccVolatile = 0x0040;
33 // int AccTransient = 0x0080;
34 // int AccNative = 0x0100;
35 int AccInterface = 0x0200;
37 int AccAbstract = 0x0400;
39 // int AccStrictfp = 0x0800;
44 int AccSuper = 0x0020;
47 * Extra flags for types and members.
49 // int AccSynthetic = 0x20000;
50 int AccDeprecated = 0x100000;