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

Method setColumnTitle

core/src/processing/data/Table.java:2203–2210  ·  view source on GitHub ↗
(int column, String title)

Source from the content-addressed store, hash-verified

2201
2202
2203 public void setColumnTitle(int column, String title) {
2204 ensureColumn(column);
2205 if (columnTitles == null) {
2206 columnTitles = new String[getColumnCount()];
2207 }
2208 columnTitles[column] = title;
2209 columnIndices = null; // reset these fellas
2210 }
2211
2212
2213 public boolean hasColumnTitles() {

Callers 2

TableMethod · 0.95
loadBinaryMethod · 0.95

Calls 2

ensureColumnMethod · 0.95
getColumnCountMethod · 0.95

Tested by

no test coverage detected