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

changeset 1569
475eb15dfdad
parent 1442
fcf89720ae71
child 1570
f91144b7da75
equal deleted inserted replaced
1568:5f0731e4e5e6 1569:475eb15dfdad
262 * Flag that marks class as auxiliary, ie a non-public class following 262 * Flag that marks class as auxiliary, ie a non-public class following
263 * the public class in a source file, that could block implicit compilation. 263 * the public class in a source file, that could block implicit compilation.
264 */ 264 */
265 public static final long AUXILIARY = 1L<<44; 265 public static final long AUXILIARY = 1L<<44;
266 266
267 /**
268 * Flag that marks that a symbol is not available in the current profile
269 */
270 public static final long NOT_IN_PROFILE = 1L<<45;
271
267 /** Modifier masks. 272 /** Modifier masks.
268 */ 273 */
269 public static final int 274 public static final int
270 AccessFlags = PUBLIC | PROTECTED | PRIVATE, 275 AccessFlags = PUBLIC | PROTECTED | PRIVATE,
271 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC, 276 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC,

mercurial