Skip to content

Commit 7762457

Browse files
committed
Added related links to reference for IntList, FloatList, StringList
1 parent 6306bc4 commit 7762457

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

core/src/processing/data/FloatList.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* a sorted copy, use list.copy().sort().
1717
*
1818
* @webref data:composite
19+
* @see IntList
20+
* @see StringList
1921
*/
2022
public class FloatList implements Iterable<Float> {
2123
int count;

core/src/processing/data/IntList.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
* a sorted copy, use list.copy().sort().
2222
*
2323
* @webref data:composite
24+
* @see FloatList
25+
* @see StringList
2426
*/
2527
public class IntList implements Iterable<Integer> {
2628
protected int count;

core/src/processing/data/StringList.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* a sorted copy, use list.copy().sort().
1616
*
1717
* @webref data:composite
18+
* @see IntList
19+
* @see FloatList
1820
*/
1921
public class StringList implements Iterable<String> {
2022
int count;

0 commit comments

Comments
 (0)