new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / Flags.java
index 3fcf33a..fefe486 100644 (file)
@@ -80,12 +80,12 @@ public final class Flags {
         * Interface property flag. See The Java Virtual Machine Specification for more details.
         * @since 2.0
         */
-//     public static final int AccInterface = IConstants.AccInterface;
+       public static final int AccInterface = IConstants.AccInterface;
        /**
         * Abstract property flag. See The Java Virtual Machine Specification for more details.
         * @since 2.0
         */
-//     public static final int AccAbstract = IConstants.AccAbstract;
+       public static final int AccAbstract = IConstants.AccAbstract;
        /**
         * Strictfp property flag. See The Java Virtual Machine Specification for more details.
         * @since 2.0
@@ -105,7 +105,7 @@ public final class Flags {
         * Deprecated property flag. See The Java Virtual Machine Specification for more details.
         * @since 2.0
         */
-//     public static final int AccDeprecated = IConstants.AccDeprecated;
+       public static final int AccDeprecated = IConstants.AccDeprecated;
        
        /**
         * Not instantiable.
@@ -118,9 +118,9 @@ public final class Flags {
         * @param flags the flags
         * @return <code>true</code> if the <code>abstract</code> modifier is included
         */
-//     public static boolean isAbstract(int flags) {
-//             return (flags & AccAbstract) != 0;
-//     }
+       public static boolean isAbstract(int flags) {
+               return (flags & AccAbstract) != 0;
+       }
        /**
         * Returns whether the given integer includes the indication that the 
         * element is deprecated (<code>@deprecated</code> tag in Javadoc comment).
@@ -128,9 +128,9 @@ public final class Flags {
         * @param flags the flags
         * @return <code>true</code> if the element is marked as deprecated
         */
-//     public static boolean isDeprecated(int flags) {
-//             return (flags & AccDeprecated) != 0;
-//     }
+       public static boolean isDeprecated(int flags) {
+               return (flags & AccDeprecated) != 0;
+       }
        /**
         * Returns whether the given integer includes the <code>final</code> modifier.
         *
@@ -147,9 +147,9 @@ public final class Flags {
         * @return <code>true</code> if the <code>interface</code> modifier is included
         * @since 2.0
         */
-//     public static boolean isInterface(int flags) {
-//             return (flags & AccInterface) != 0;
-//     }
+       public static boolean isInterface(int flags) {
+               return (flags & AccInterface) != 0;
+       }
        /**
         * Returns whether the given integer includes the <code>native</code> modifier.
         *