langtools/src/share/classes/com/sun/tools/javac/code/Flags.java
changeset 15376 32b49791817d
parent 14801 d66cab4ef397
child 15377 515846bb6637
equal deleted inserted replaced
15375:d2529dc91d77 15376:32b49791817d
   278         InterfaceMethodFlags  = ABSTRACT | PUBLIC,
   278         InterfaceMethodFlags  = ABSTRACT | PUBLIC,
   279         MethodFlags           = AccessFlags | ABSTRACT | STATIC | NATIVE |
   279         MethodFlags           = AccessFlags | ABSTRACT | STATIC | NATIVE |
   280                                 SYNCHRONIZED | FINAL | STRICTFP;
   280                                 SYNCHRONIZED | FINAL | STRICTFP;
   281     public static final long
   281     public static final long
   282         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   282         ExtendedStandardFlags       = (long)StandardFlags | DEFAULT,
   283         InterfaceDefaultMethodMask  = ABSTRACT | PUBLIC | STRICTFP | SYNCHRONIZED | DEFAULT,
   283         InterfaceDefaultMethodMask  = ABSTRACT | PUBLIC | STRICTFP | DEFAULT,
   284         LocalVarFlags               = FINAL | PARAMETER;
   284         LocalVarFlags               = FINAL | PARAMETER;
   285 
   285 
   286 
   286 
   287     public static Set<Modifier> asModifierSet(long flags) {
   287     public static Set<Modifier> asModifierSet(long flags) {
   288         Set<Modifier> modifiers = modifierSets.get(flags);
   288         Set<Modifier> modifiers = modifierSets.get(flags);