Search in sources :

Example 1 with BoundedInteger

use of org.cytoscape.work.util.BoundedInteger in project cytoscape-impl by cytoscape.

the class BoundedIntTunableHandler method processArg.

public Object processArg(String arg) throws Exception {
    int value = Integer.parseInt(arg);
    BoundedInteger bi = (BoundedInteger) getValue();
    bi.setValue(value);
    return bi;
}
Also used : BoundedInteger(org.cytoscape.work.util.BoundedInteger)

Aggregations

BoundedInteger (org.cytoscape.work.util.BoundedInteger)1