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

changeset 1384
bf54daa9dcd8
parent 1366
12cf6bfd8c05
child 1393
d7d932236fee
equal deleted inserted replaced
1383:b980e8e6aabf 1384:bf54daa9dcd8
256 /** 256 /**
257 * Flag that marks either a default method or an interface containing default methods 257 * Flag that marks either a default method or an interface containing default methods
258 */ 258 */
259 public static final long DEFAULT = 1L<<43; 259 public static final long DEFAULT = 1L<<43;
260 260
261 /**
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.
264 */
265 public static final long AUXILIARY = 1L<<43;
266
261 /** Modifier masks. 267 /** Modifier masks.
262 */ 268 */
263 public static final int 269 public static final int
264 AccessFlags = PUBLIC | PROTECTED | PRIVATE, 270 AccessFlags = PUBLIC | PROTECTED | PRIVATE,
265 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC, 271 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC,

mercurial