use of org.cytoscape.command.util.NodeList in project cytoscape-impl by cytoscape.
the class NodeListTunableHandler method processArg.
public Object processArg(String arg) throws Exception {
NodeList bi = (NodeList) getValue();
CyNetwork network = bi.getNetwork();
// System.out.println("Processing argument "+arg);
List<CyNode> value = stringHandler.getNodeList(network, arg);
bi.setValue(value);
return bi;
}