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

changeset 1512
b12ffdfa1341
parent 1442
fcf89720ae71
child 1513
cf84b07a82db
equal deleted inserted replaced
1511:c7c41a044e7c 1512:b12ffdfa1341
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);

mercurial