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;
}
Aggregations