X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fenv%2FIConstants.java;fp=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fenv%2FIConstants.java;h=0000000000000000000000000000000000000000;hb=6f0cd02d46e011bd5599e1b7fefc6159cb811135;hp=4f3bfa15a6f34e3597f944256c8774796e370a75;hpb=622d0e5a4b1b35b6918a516a79a0cc22272a919e;p=org.ibex.tool.git diff --git a/src/org/eclipse/jdt/internal/compiler/env/IConstants.java b/src/org/eclipse/jdt/internal/compiler/env/IConstants.java deleted file mode 100644 index 4f3bfa1..0000000 --- a/src/org/eclipse/jdt/internal/compiler/env/IConstants.java +++ /dev/null @@ -1,49 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.jdt.internal.compiler.env; - -/** - * This interface defines constants for use by the builder / compiler interface. - */ -public interface IConstants { - - int AccDefault = 0; - - /** - * Modifiers - */ - int AccPublic = 0x0001; - int AccPrivate = 0x0002; - int AccProtected = 0x0004; - int AccStatic = 0x0008; - int AccFinal = 0x0010; - int AccSynchronized = 0x0020; - int AccVolatile = 0x0040; - int AccBridge = 0x0040; - int AccTransient = 0x0080; - int AccVarargs = 0x0080; - int AccNative = 0x0100; - int AccInterface = 0x0200; - int AccAbstract = 0x0400; - int AccStrictfp = 0x0800; - int AccSynthetic = 0x1000; - - /** - * Other VM flags. - */ - int AccSuper = 0x0020; - - /** - * Extra flags for types and members attributes. - */ - int AccDeprecated = 0x100000; - -}