Skip to content

Commit b73ae49

Browse files
author
Scott Murray
committed
TableRow reference: Removed 'related' Table methods, as they aren't being parsed properly by the generator
1 parent f01952a commit b73ae49

1 file changed

Lines changed: 0 additions & 18 deletions

File tree

core/src/processing/data/TableRow.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ public interface TableRow {
1717
* @param column ID number of the column to reference
1818
* @see TableRow#getInt(int)
1919
* @see TableRow#getFloat(int)
20-
* @see Table#getInt(int, int)
21-
* @see Table#getFloat(int, int)
22-
* @see Table#getString(int, int)
2320
*/
2421
public String getString(int column);
2522
/**
@@ -33,9 +30,6 @@ public interface TableRow {
3330
* @param column ID number of the column to reference
3431
* @see TableRow#getFloat(int)
3532
* @see TableRow#getString(int)
36-
* @see Table#getInt(int, int)
37-
* @see Table#getFloat(int, int)
38-
* @see Table#getString(int, int)
3933
*/
4034
public int getInt(int column);
4135
/**
@@ -52,9 +46,6 @@ public interface TableRow {
5246
* @param column ID number of the column to reference
5347
* @see TableRow#getInt(int)
5448
* @see TableRow#getString(int)
55-
* @see Table#getInt(int, int)
56-
* @see Table#getFloat(int, int)
57-
* @see Table#getString(int, int)
5849
*/
5950
public float getFloat(int column);
6051
/**
@@ -72,9 +63,6 @@ public interface TableRow {
7263
* @param value value to assign
7364
* @see TableRow#setInt(int, int)
7465
* @see TableRow#setFloat(int, float)
75-
* @see Table#setInt(int, int, int)
76-
* @see Table#setFloat(int, int, float)
77-
* @see Table#setString(int, int, String)
7866
*/
7967
public void setString(int column, String value);
8068
/**
@@ -89,9 +77,6 @@ public interface TableRow {
8977
* @param value value to assign
9078
* @see TableRow#setFloat(int, float)
9179
* @see TableRow#setString(int, String)
92-
* @see Table#setInt(int, int, int)
93-
* @see Table#setFloat(int, int, float)
94-
* @see Table#setString(int, int, String)
9580
*/
9681
public void setInt(int column, int value);
9782
/**
@@ -109,9 +94,6 @@ public interface TableRow {
10994
* @param value value to assign
11095
* @see TableRow#setInt(int, int)
11196
* @see TableRow#setString(int, String)
112-
* @see Table#setInt(int, int, int)
113-
* @see Table#setFloat(int, int, float)
114-
* @see Table#setString(int, int, String)
11597
*/
11698
public void setFloat(int column, float value);
11799
/**

0 commit comments

Comments
 (0)