Search in sources :

Example 1 with NodeList

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;
}
Also used : NodeList(org.cytoscape.command.util.NodeList) CyNetwork(org.cytoscape.model.CyNetwork) CyNode(org.cytoscape.model.CyNode)

Aggregations

NodeList (org.cytoscape.command.util.NodeList)1 CyNetwork (org.cytoscape.model.CyNetwork)1 CyNode (org.cytoscape.model.CyNode)1