MCPcopy Create free account
hub / github.com/annmuor/jnode / setColumns

Method setColumns

jnode-core/src/jnode/report/ReportBuilder.java:204–210  ·  view source on GitHub ↗
(List<String> columns)

Source from the content-addressed store, hash-verified

202 }
203
204 public void setColumns(List<String> columns) {
205 if (columns == null) {
206 this.columns = null;
207 } else {
208 this.columns = new ArrayList<>(columns);
209 }
210 }
211
212 public void setColumns(String cols, String delim) {
213 setColumns(asStrList(cols, delim));

Callers 5

testAddItemConvertMethod · 0.95
getTextMethod · 0.95
getTextMethod · 0.95
reportMethod · 0.95

Calls 1

asStrListMethod · 0.95

Tested by 2

testAddItemConvertMethod · 0.76