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

changeset 735
f2048d9c666e
parent 724
7755f47542a0
child 798
4868a36f6fd8
equal deleted inserted replaced
731:fadc6d3e63f4 735:f2048d9c666e
245 * Flag that marks a special kind of bridge methods (the ones that 245 * Flag that marks a special kind of bridge methods (the ones that
246 * come from restricted supertype bounds) 246 * come from restricted supertype bounds)
247 */ 247 */
248 public static final long OVERRIDE_BRIDGE = 1L<<41; 248 public static final long OVERRIDE_BRIDGE = 1L<<41;
249 249
250 /**
251 * Flag that marks an 'effectively final' local variable
252 */
253 public static final long EFFECTIVELY_FINAL = 1L<<42;
254
250 /** Modifier masks. 255 /** Modifier masks.
251 */ 256 */
252 public static final int 257 public static final int
253 AccessFlags = PUBLIC | PROTECTED | PRIVATE, 258 AccessFlags = PUBLIC | PROTECTED | PRIVATE,
254 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC, 259 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC,

mercurial