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

changeset 1603
6118072811e5
parent 1588
2620c953e9fe
parent 1571
af8417e590f4
child 1672
0d47e6131490
equal deleted inserted replaced
1602:dabb36173c63 1603:6118072811e5
267 * the public class in a source file, that could block implicit compilation. 267 * the public class in a source file, that could block implicit compilation.
268 */ 268 */
269 public static final long AUXILIARY = 1L<<44; 269 public static final long AUXILIARY = 1L<<44;
270 270
271 /** 271 /**
272 * Flag that marks that a symbol is not available in the current profile
273 */
274 public static final long NOT_IN_PROFILE = 1L<<45;
275
276 /**
272 * Flag that indicates that an override error has been detected by Check. 277 * Flag that indicates that an override error has been detected by Check.
273 */ 278 */
274 public static final long BAD_OVERRIDE = 1L<<45; 279 public static final long BAD_OVERRIDE = 1L<<45;
275 280
276 /** Modifier masks. 281 /** Modifier masks.

mercurial