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

changeset 2424
7e97c65c373c
parent 2413
fe033d997ddf
child 2425
76b61848c9a4
equal deleted inserted replaced
2422:4ee06c77b51b 2424:7e97c65c373c
293 public static final long 293 public static final long
294 ExtendedStandardFlags = (long)StandardFlags | DEFAULT, 294 ExtendedStandardFlags = (long)StandardFlags | DEFAULT,
295 ModifierFlags = ((long)StandardFlags & ~INTERFACE) | DEFAULT, 295 ModifierFlags = ((long)StandardFlags & ~INTERFACE) | DEFAULT,
296 InterfaceMethodMask = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT, 296 InterfaceMethodMask = ABSTRACT | STATIC | PUBLIC | STRICTFP | DEFAULT,
297 AnnotationTypeElementMask = ABSTRACT | PUBLIC, 297 AnnotationTypeElementMask = ABSTRACT | PUBLIC,
298 LocalVarFlags = FINAL | PARAMETER; 298 LocalVarFlags = FINAL | PARAMETER,
299 ReceiverParamFlags = PARAMETER;
299 300
300 301
301 public static Set<Modifier> asModifierSet(long flags) { 302 public static Set<Modifier> asModifierSet(long flags) {
302 Set<Modifier> modifiers = modifierSets.get(flags); 303 Set<Modifier> modifiers = modifierSets.get(flags);
303 if (modifiers == null) { 304 if (modifiers == null) {

mercurial