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

Method setColumnTitle

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

Source from the content-addressed store, hash-verified

2170
2171
2172 public void setColumnTitle(int column, String title) {
2173 ensureColumn(column);
2174 if (columnTitles == null) {
2175 columnTitles = new String[getColumnCount()];
2176 }
2177 columnTitles[column] = title;
2178 columnIndices = null; // reset these fellas
2179 }
2180
2181
2182 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