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

changeset 844
2088e674f0e0
parent 798
4868a36f6fd8
child 857
3aa269645199
equal deleted inserted replaced
843:92ab09ed59fd 844:2088e674f0e0
1 /* 1 /*
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
250 /** 250 /**
251 * Flag that marks an 'effectively final' local variable 251 * Flag that marks an 'effectively final' local variable
252 */ 252 */
253 public static final long EFFECTIVELY_FINAL = 1L<<42; 253 public static final long EFFECTIVELY_FINAL = 1L<<42;
254 254
255 /**
256 * Flag that marks non-override equivalent methods with the same signature
257 */
258 public static final long CLASH = 1L<<43;
259
255 /** Modifier masks. 260 /** Modifier masks.
256 */ 261 */
257 public static final int 262 public static final int
258 AccessFlags = PUBLIC | PROTECTED | PRIVATE, 263 AccessFlags = PUBLIC | PROTECTED | PRIVATE,
259 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC, 264 LocalClassFlags = FINAL | ABSTRACT | STRICTFP | ENUM | SYNTHETIC,

mercurial