langtools/src/share/classes/com/sun/tools/javac/code/Flags.java
changeset 24793 bb58a9f1ae10
parent 24792 24452ca131a3
child 24903 41e1812d6b4c
equal deleted inserted replaced
24792:24452ca131a3 24793:bb58a9f1ae10
   294     public static final long
   294     public static final long
   295         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   295         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   296         ModifierFlags               = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
   296         ModifierFlags               = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
   297         InterfaceMethodMask         = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT,
   297         InterfaceMethodMask         = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT,
   298         AnnotationTypeElementMask   = ABSTRACT | PUBLIC,
   298         AnnotationTypeElementMask   = ABSTRACT | PUBLIC,
   299         LocalVarFlags               = FINAL | PARAMETER,
   299         LocalVarFlags               = FINAL | PARAMETER;
   300         BridgeMethodMask            = AccessFlags | FINAL | STRICTFP;
   300 
   301 
   301 
   302     public static Set<Modifier> asModifierSet(long flags) {
   302     public static Set<Modifier> asModifierSet(long flags) {
   303         Set<Modifier> modifiers = modifierSets.get(flags);
   303         Set<Modifier> modifiers = modifierSets.get(flags);
   304         if (modifiers == null) {
   304         if (modifiers == null) {
   305             modifiers = java.util.EnumSet.noneOf(Modifier.class);
   305             modifiers = java.util.EnumSet.noneOf(Modifier.class);