langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Flags.java
changeset 29293 1583c6dd6df7
parent 25874 83c19f00452c
child 33367 546ffcb790a5
equal deleted inserted replaced
29292:c10d63c667cd 29293:1583c6dd6df7
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   297         MethodFlags           = AccessFlags | ABSTRACT | STATIC | NATIVE |
   297         MethodFlags           = AccessFlags | ABSTRACT | STATIC | NATIVE |
   298                                 SYNCHRONIZED | FINAL | STRICTFP;
   298                                 SYNCHRONIZED | FINAL | STRICTFP;
   299     public static final long
   299     public static final long
   300         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   300         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   301         ModifierFlags               = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
   301         ModifierFlags               = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
   302         InterfaceMethodMask         = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT,
   302         InterfaceMethodMask         = ABSTRACT | PRIVATE | STATIC | PUBLIC | STRICTFP | DEFAULT,
   303         AnnotationTypeElementMask   = ABSTRACT | PUBLIC,
   303         AnnotationTypeElementMask   = ABSTRACT | PUBLIC,
   304         LocalVarFlags               = FINAL | PARAMETER,
   304         LocalVarFlags               = FINAL | PARAMETER,
   305         ReceiverParamFlags          = PARAMETER;
   305         ReceiverParamFlags          = PARAMETER;
   306 
   306 
   307 
   307