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

Method setColumnTitles

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

Source from the content-addressed store, hash-verified

2161
2162
2163 public void setColumnTitles(String[] titles) {
2164 if (titles != null) {
2165 ensureColumn(titles.length - 1);
2166 }
2167 columnTitles = titles;
2168 columnIndices = null; // remove the cache
2169 }
2170
2171
2172 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