use of org.cytoscape.command.util.EdgeList in project cytoscape-impl by cytoscape.
the class EdgeListTunableHandler method processArg.
public Object processArg(String arg) throws Exception {
EdgeList bi = (EdgeList) getValue();
CyNetwork network = bi.getNetwork();
List<CyEdge> value = stringHandler.getEdgeList(network, arg);
bi.setValue(value);
return bi;
}