mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8292576: Improve wording of AccessFlag-related specs
Reviewed-by: alanb
This commit is contained in:
parent
5ca268ca65
commit
58aae340a9
2 changed files with 26 additions and 19 deletions
|
@ -99,7 +99,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_PUBLIC}, corresponding to the source
|
||||
* modifier {@link Modifier#PUBLIC public} with a mask value of
|
||||
* modifier {@link Modifier#PUBLIC public}, with a mask value of
|
||||
* <code>{@value "0x%04x" Modifier#PUBLIC}</code>.
|
||||
*/
|
||||
PUBLIC(Modifier.PUBLIC, true,
|
||||
|
@ -115,7 +115,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_PRIVATE}, corresponding to the
|
||||
* source modifier {@link Modifier#PRIVATE private} with a mask
|
||||
* source modifier {@link Modifier#PRIVATE private}, with a mask
|
||||
* value of <code>{@value "0x%04x" Modifier#PRIVATE}</code>.
|
||||
*/
|
||||
PRIVATE(Modifier.PRIVATE, true, Location.SET_FIELD_METHOD_INNER_CLASS,
|
||||
|
@ -130,7 +130,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_PROTECTED}, corresponding to the
|
||||
* source modifier {@link Modifier#PROTECTED protected} with a mask
|
||||
* source modifier {@link Modifier#PROTECTED protected}, with a mask
|
||||
* value of <code>{@value "0x%04x" Modifier#PROTECTED}</code>.
|
||||
*/
|
||||
PROTECTED(Modifier.PROTECTED, true, Location.SET_FIELD_METHOD_INNER_CLASS,
|
||||
|
@ -145,7 +145,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_STATIC}, corresponding to the source
|
||||
* modifier {@link Modifier#STATIC static} with a mask value of
|
||||
* modifier {@link Modifier#STATIC static}, with a mask value of
|
||||
* <code>{@value "0x%04x" Modifier#STATIC}</code>.
|
||||
*/
|
||||
STATIC(Modifier.STATIC, true, Location.SET_FIELD_METHOD_INNER_CLASS,
|
||||
|
@ -159,7 +159,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_FINAL}, corresponding to the source
|
||||
* modifier {@link Modifier#FINAL final} with a mask
|
||||
* modifier {@link Modifier#FINAL final}, with a mask
|
||||
* value of <code>{@value "0x%04x" Modifier#FINAL}</code>.
|
||||
*/
|
||||
FINAL(Modifier.FINAL, true,
|
||||
|
@ -217,7 +217,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_SYNCHRONIZED}, corresponding to the
|
||||
* source modifier {@link Modifier#SYNCHRONIZED synchronized} with
|
||||
* source modifier {@link Modifier#SYNCHRONIZED synchronized}, with
|
||||
* a mask value of <code>{@value "0x%04x" Modifier#SYNCHRONIZED}</code>.
|
||||
*/
|
||||
SYNCHRONIZED(Modifier.SYNCHRONIZED, true, Location.SET_METHOD, null),
|
||||
|
@ -238,7 +238,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_VOLATILE}, corresponding to the
|
||||
* source modifier {@link Modifier#VOLATILE volatile} with a mask
|
||||
* source modifier {@link Modifier#VOLATILE volatile}, with a mask
|
||||
* value of <code>{@value "0x%04x" Modifier#VOLATILE}</code>.
|
||||
*/
|
||||
VOLATILE(Modifier.VOLATILE, true, Location.SET_FIELD, null),
|
||||
|
@ -259,7 +259,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_TRANSIENT}, corresponding to the
|
||||
* source modifier {@link Modifier#TRANSIENT transient} with a
|
||||
* source modifier {@link Modifier#TRANSIENT transient}, with a
|
||||
* mask value of <code>{@value "0x%04x" Modifier#TRANSIENT}</code>.
|
||||
*/
|
||||
TRANSIENT(Modifier.TRANSIENT, true, Location.SET_FIELD, null),
|
||||
|
@ -280,7 +280,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_NATIVE}, corresponding to the source
|
||||
* modifier {@link Modifier#NATIVE native} with a mask value of
|
||||
* modifier {@link Modifier#NATIVE native}, with a mask value of
|
||||
* <code>{@value "0x%04x" Modifier#NATIVE}</code>.
|
||||
*/
|
||||
NATIVE(Modifier.NATIVE, true, Location.SET_METHOD, null),
|
||||
|
@ -301,7 +301,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_ABSTRACT}, corresponding to the
|
||||
* source modifier {@link Modifier#ABSTRACT abstract} with a mask
|
||||
* source modifier {@link Modifier#ABSTRACT abstract}, with a mask
|
||||
* value of <code>{@value "0x%04x" Modifier#ABSTRACT}</code>.
|
||||
*/
|
||||
ABSTRACT(Modifier.ABSTRACT, true,
|
||||
|
@ -316,7 +316,7 @@ public enum AccessFlag {
|
|||
|
||||
/**
|
||||
* The access flag {@code ACC_STRICT}, corresponding to the source
|
||||
* modifier {@link Modifier#STRICT strictfp} with a mask value of
|
||||
* modifier {@link Modifier#STRICT strictfp}, with a mask value of
|
||||
* <code>{@value "0x%04x" Modifier#STRICT}</code>.
|
||||
*
|
||||
* @apiNote
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue