src/share/classes/javax/lang/model/element/Modifier.java

changeset 1672
0d47e6131490
parent 1442
fcf89720ae71
child 2525
2eb010b6cb22
equal deleted inserted replaced
1671:46d2f144ebbd 1672:0d47e6131490
1 /* 1 /*
2 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2005, 2013, 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
51 51
52 /** The modifier {@code public} */ PUBLIC, 52 /** The modifier {@code public} */ PUBLIC,
53 /** The modifier {@code protected} */ PROTECTED, 53 /** The modifier {@code protected} */ PROTECTED,
54 /** The modifier {@code private} */ PRIVATE, 54 /** The modifier {@code private} */ PRIVATE,
55 /** The modifier {@code abstract} */ ABSTRACT, 55 /** The modifier {@code abstract} */ ABSTRACT,
56 /**
57 * The modifier {@code default}
58 * @since 1.8
59 */
60 DEFAULT,
56 /** The modifier {@code static} */ STATIC, 61 /** The modifier {@code static} */ STATIC,
57 /** The modifier {@code final} */ FINAL, 62 /** The modifier {@code final} */ FINAL,
58 /** The modifier {@code transient} */ TRANSIENT, 63 /** The modifier {@code transient} */ TRANSIENT,
59 /** The modifier {@code volatile} */ VOLATILE, 64 /** The modifier {@code volatile} */ VOLATILE,
60 /** The modifier {@code synchronized} */ SYNCHRONIZED, 65 /** The modifier {@code synchronized} */ SYNCHRONIZED,

mercurial