@@ -20,7 +20,7 @@ public interface ListNumber extends CollectionNumber {
2020 * @param index position of the element to return
2121 * @return the element at the specified position in this list
2222 * @throws IndexOutOfBoundsException if the index is out of range
23- * (<tt >index < 0 || index >= size()</tt >)
23+ * (<code >index < 0 || index >= size()</code >)
2424 */
2525 double getDouble (int index );
2626
@@ -30,7 +30,7 @@ public interface ListNumber extends CollectionNumber {
3030 * @param index position of the element to return
3131 * @return the element at the specified position in this list
3232 * @throws IndexOutOfBoundsException if the index is out of range
33- * (<tt >index < 0 || index >= size()</tt >)
33+ * (<code >index < 0 || index >= size()</code >)
3434 */
3535 float getFloat (int index );
3636
@@ -40,7 +40,7 @@ public interface ListNumber extends CollectionNumber {
4040 * @param index position of the element to return
4141 * @return the element at the specified position in this list
4242 * @throws IndexOutOfBoundsException if the index is out of range
43- * (<tt >index < 0 || index >= size()</tt >)
43+ * (<code >index < 0 || index >= size()</code >)
4444 */
4545 long getLong (int index );
4646
@@ -50,7 +50,7 @@ public interface ListNumber extends CollectionNumber {
5050 * @param index position of the element to return
5151 * @return the element at the specified position in this list
5252 * @throws IndexOutOfBoundsException if the index is out of range
53- * (<tt >index < 0 || index >= size()</tt >)
53+ * (<code >index < 0 || index >= size()</code >)
5454 */
5555 int getInt (int index );
5656
@@ -60,7 +60,7 @@ public interface ListNumber extends CollectionNumber {
6060 * @param index position of the element to return
6161 * @return the element at the specified position in this list
6262 * @throws IndexOutOfBoundsException if the index is out of range
63- * (<tt >index < 0 || index >= size()</tt >)
63+ * (<code >index < 0 || index >= size()</code >)
6464 */
6565 short getShort (int index );
6666
@@ -70,7 +70,7 @@ public interface ListNumber extends CollectionNumber {
7070 * @param index position of the element to return
7171 * @return the element at the specified position in this list
7272 * @throws IndexOutOfBoundsException if the index is out of range
73- * (<tt >index < 0 || index >= size()</tt >)
73+ * (<code >index < 0 || index >= size()</code >)
7474 */
7575 byte getByte (int index );
7676
@@ -81,7 +81,7 @@ public interface ListNumber extends CollectionNumber {
8181 * @param index position of the element to change
8282 * @param value the new value
8383 * @throws IndexOutOfBoundsException if the index is out of range
84- * (<tt >index < 0 || index >= size()</tt >)
84+ * (<code >index < 0 || index >= size()</code >)
8585 */
8686 void setDouble (int index , double value );
8787
@@ -92,7 +92,7 @@ public interface ListNumber extends CollectionNumber {
9292 * @param index position of the element to change
9393 * @param value the new value
9494 * @throws IndexOutOfBoundsException if the index is out of range
95- * (<tt >index < 0 || index >= size()</tt >)
95+ * (<code >index < 0 || index >= size()</code >)
9696 */
9797 void setFloat (int index , float value );
9898
@@ -103,7 +103,7 @@ public interface ListNumber extends CollectionNumber {
103103 * @param index position of the element to change
104104 * @param value the new value
105105 * @throws IndexOutOfBoundsException if the index is out of range
106- * (<tt >index < 0 || index >= size()</tt >)
106+ * (<code >index < 0 || index >= size()</code >)
107107 */
108108 void setLong (int index , long value );
109109
@@ -114,7 +114,7 @@ public interface ListNumber extends CollectionNumber {
114114 * @param index position of the element to change
115115 * @param value the new value
116116 * @throws IndexOutOfBoundsException if the index is out of range
117- * (<tt >index < 0 || index >= size()</tt >)
117+ * (<code >index < 0 || index >= size()</code >)
118118 */
119119 void setInt (int index , int value );
120120
@@ -125,7 +125,7 @@ public interface ListNumber extends CollectionNumber {
125125 * @param index position of the element to change
126126 * @param value the new value
127127 * @throws IndexOutOfBoundsException if the index is out of range
128- * (<tt >index < 0 || index >= size()</tt >)
128+ * (<code >index < 0 || index >= size()</code >)
129129 */
130130 void setShort (int index , short value );
131131
@@ -136,7 +136,7 @@ public interface ListNumber extends CollectionNumber {
136136 * @param index position of the element to change
137137 * @param value the new value
138138 * @throws IndexOutOfBoundsException if the index is out of range
139- * (<tt >index < 0 || index >= size()</tt >)
139+ * (<code >index < 0 || index >= size()</code >)
140140 */
141141 void setByte (int index , byte value );
142142
@@ -147,21 +147,21 @@ public interface ListNumber extends CollectionNumber {
147147 * @param index position of the first element to change
148148 * @param list the new values
149149 * @throws IndexOutOfBoundsException if the index is out of range
150- * (<tt >index < 0 || index >= size()</tt >) or if this
150+ * (<code >index < 0 || index >= size()</code >) or if this
151151 * list is too short to hold the data.
152152 */
153153 void setAll (int index , ListNumber list );
154154
155155 /**
156156 * Returns a view of the portion of this list between the specified
157- * <tt >fromIndex</tt >, inclusive, and <tt >toIndex</tt >, exclusive.
157+ * <var >fromIndex</var >, inclusive, and <var >toIndex</var >, exclusive.
158158 *
159159 * @param fromIndex low endpoint (inclusive) of the subList
160160 * @param toIndex high endpoint (exclusive) of the subList
161161 * @return a view of the specified range within this list
162162 * @throws IndexOutOfBoundsException for an illegal endpoint index value
163- * (<tt >fromIndex < 0 || toIndex > size ||
164- * fromIndex > toIndex</tt >)
163+ * (<code >fromIndex < 0 || toIndex > size ||
164+ * fromIndex > toIndex</code >)
165165 */
166166 ListNumber subList (int fromIndex , int toIndex );
167167
0 commit comments