MCPcopy Index your code
hub / github.com/benfry/processing4 / ensureColumn

Method ensureColumn

core/src/processing/data/Table.java:4251–4255  ·  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

4249
4250 /** Make sure this is a legit column, and if not, expand the table. */
4251 protected void ensureColumn(int col) {
4252 if (col >= columns.length) {
4253 setColumnCount(col + 1);
4254 }
4255 }
4256
4257
4258 /** 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