use of org.cytoscape.command.util.RowList in project cytoscape-impl by cytoscape.
the class RowListTunableHandler method processArg.
public Object processArg(String arg) throws Exception {
RowList bi = (RowList) getValue();
CyTable table = bi.getTable();
List<CyRow> value = stringHandler.getRowList(table, arg);
bi.setValue(value);
return bi;
}