MCPcopy Index your code
hub / github.com/processing/processing / ensureRow

Method ensureRow

core/src/processing/data/Table.java:4160–4164  ·  view source on GitHub ↗

Make sure this is a legit row, and if not, expand the table.

(int row)

Source from the content-addressed store, hash-verified

4158
4159 /** Make sure this is a legit row, and if not, expand the table. */
4160 protected void ensureRow(int row) {
4161 if (row >= rowCount) {
4162 setRowCount(row + 1);
4163 }
4164 }
4165
4166
4167 /** Make sure this is a legit row and column. If not, expand the table. */

Callers 1

ensureBoundsMethod · 0.95

Calls 1

setRowCountMethod · 0.95

Tested by

no test coverage detected