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

Method ensureColumn

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

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

(int col)

Source from the content-addressed store, hash-verified

4150
4151 /** Make sure this is a legit column, and if not, expand the table. */
4152 protected void ensureColumn(int col) {
4153 if (col >= columns.length) {
4154 setColumnCount(col + 1);
4155 }
4156 }
4157
4158
4159 /** Make sure this is a legit row, and if not, expand the table. */

Callers 4

setColumnTypesMethod · 0.95
setColumnTitlesMethod · 0.95
setColumnTitleMethod · 0.95
ensureBoundsMethod · 0.95

Calls 1

setColumnCountMethod · 0.95

Tested by

no test coverage detected