src/share/classes/com/sun/tools/javac/code/Flags.java

changeset 2205
3ea55d523981
parent 2146
7de97abc4a5c
child 2409
7e0ba7b086c8
equal deleted inserted replaced
2204:a78f51d6bd5e 2205:3ea55d523981
291 SYNCHRONIZED | FINAL | STRICTFP; 291 SYNCHRONIZED | FINAL | STRICTFP;
292 public static final long 292 public static final long
293 ExtendedStandardFlags = (long)StandardFlags | DEFAULT, 293 ExtendedStandardFlags = (long)StandardFlags | DEFAULT,
294 ModifierFlags = ((long)StandardFlags & ~INTERFACE) | DEFAULT, 294 ModifierFlags = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
295 InterfaceMethodMask = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT, 295 InterfaceMethodMask = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT,
296 AnnotationTypeElementMask = FINAL | ABSTRACT | PUBLIC | STRICTFP, 296 AnnotationTypeElementMask = ABSTRACT | PUBLIC,
297 LocalVarFlags = FINAL | PARAMETER; 297 LocalVarFlags = FINAL | PARAMETER;
298 298
299 299
300 public static Set<Modifier> asModifierSet(long flags) { 300 public static Set<Modifier> asModifierSet(long flags) {
301 Set<Modifier> modifiers = modifierSets.get(flags); 301 Set<Modifier> modifiers = modifierSets.get(flags);

mercurial