X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IConstants.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IConstants.java index 0fbd8bd..fd4092c 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IConstants.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/env/IConstants.java @@ -1,13 +1,13 @@ /******************************************************************************* - * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others. + * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v0.5 + * 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-v05.html + * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation - ******************************************************************************/ + *******************************************************************************/ package net.sourceforge.phpdt.internal.compiler.env; /** @@ -23,13 +23,13 @@ public interface IConstants { int AccProtected = 0x0004; int AccStatic = 0x0008; int AccFinal = 0x0010; - int AccSynchronized = 0x0020; - int AccVolatile = 0x0040; - int AccTransient = 0x0080; - int AccNative = 0x0100; - int AccInterface = 0x0200; - int AccAbstract = 0x0400; - int AccStrictfp = 0x0800; +// int AccSynchronized = 0x0020; +// int AccVolatile = 0x0040; +// int AccTransient = 0x0080; +// int AccNative = 0x0100; +// int AccInterface = 0x0200; +// int AccAbstract = 0x0400; +// int AccStrictfp = 0x0800; /* * Other VM flags. @@ -39,6 +39,6 @@ public interface IConstants { /** * Extra flags for types and members. */ - int AccSynthetic = 0x20000; - int AccDeprecated = 0x100000; +// int AccSynthetic = 0x20000; +// int AccDeprecated = 0x100000; }