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

Method setColumnTitles

core/src/processing/data/Table.java:2194–2200  ·  view source on GitHub ↗
(String[] titles)

Source from the content-addressed store, hash-verified

2192
2193
2194 public void setColumnTitles(String[] titles) {
2195 if (titles != null) {
2196 ensureColumn(titles.length - 1);
2197 }
2198 columnTitles = titles;
2199 columnIndices = null; // remove the cache
2200 }
2201
2202
2203 public void setColumnTitle(int column, String title) {

Callers 5

TableMethod · 0.95
parseBasicMethod · 0.95
setColumnTypesMethod · 0.95
removeTitleRowMethod · 0.95
createSubsetMethod · 0.95

Calls 1

ensureColumnMethod · 0.95

Tested by

no test coverage detected