@@ -88,59 +88,59 @@ public static boolean hasDeclareKeyword(int flags) {
8888 return (flags & declareKeyword ) != 0 ;
8989 }
9090
91- /** Returns a mask with the computed bit set to the value of <tt >enable</tt >. */
91+ /** Returns a mask with the computed bit set to the value of <code >enable</code >. */
9292 public static int getComputed (boolean enable ) {
9393 return enable ? computed : 0 ;
9494 }
9595
96- /** Returns a mask with the abstract bit set to the value of <tt >enable</tt >. */
96+ /** Returns a mask with the abstract bit set to the value of <code >enable</code >. */
9797 public static int getAbstract (boolean enable ) {
9898 return enable ? abstract_ : 0 ;
9999 }
100100
101- /** Returns a mask with the static bit set to the value of <tt >enable</tt >. */
101+ /** Returns a mask with the static bit set to the value of <code >enable</code >. */
102102 public static int getStatic (boolean enable ) {
103103 return enable ? static_ : 0 ;
104104 }
105105
106- /** Returns a mask with the public bit set to the value of <tt >enable</tt >. */
106+ /** Returns a mask with the public bit set to the value of <code >enable</code >. */
107107 public static int getPublic (boolean enable ) {
108108 return enable ? public_ : 0 ;
109109 }
110110
111- /** Returns a mask with the readonly bit set to the value of <tt >enable</tt >. */
111+ /** Returns a mask with the readonly bit set to the value of <code >enable</code >. */
112112 public static int getReadonly (boolean enable ) {
113113 return enable ? readonly : 0 ;
114114 }
115115
116- /** Returns a mask with the private bit set to the value of <tt >enable</tt >. */
116+ /** Returns a mask with the private bit set to the value of <code >enable</code >. */
117117 public static int getPrivate (boolean enable ) {
118118 return enable ? private_ : 0 ;
119119 }
120120
121- /** Returns a mask with the protected bit set to the value of <tt >enable</tt >. */
121+ /** Returns a mask with the protected bit set to the value of <code >enable</code >. */
122122 public static int getProtected (boolean enable ) {
123123 return enable ? protected_ : 0 ;
124124 }
125125
126- /** Returns a mask with the optional bit set to the value of <tt >enable</tt >. */
126+ /** Returns a mask with the optional bit set to the value of <code >enable</code >. */
127127 public static int getOptional (boolean enable ) {
128128 return enable ? optional : 0 ;
129129 }
130130
131131 /**
132- * Returns a mask with the definite assignment assertion bit set to the value of <tt >enable</tt >.
132+ * Returns a mask with the definite assignment assertion bit set to the value of <code >enable</code >.
133133 */
134134 public static int getDefiniteAssignmentAssertion (boolean enable ) {
135135 return enable ? definiteAssignmentAssertion : 0 ;
136136 }
137137
138- /** Returns a mask with the declare keyword bit set to the value of <tt >enable</tt >. */
138+ /** Returns a mask with the declare keyword bit set to the value of <code >enable</code >. */
139139 public static int getDeclareKeyword (boolean enable ) {
140140 return enable ? declareKeyword : 0 ;
141141 }
142142
143- /** Returns true if the <tt >n</tt >th bit is set in <tt >flags</tt >. */
143+ /** Returns true if the <code >n</code >th bit is set in <code >flags</code >. */
144144 public static boolean hasNthFlag (int flags , int n ) {
145145 return (flags & (1 << n )) != 0 ;
146146 }
0 commit comments