use of gov.sandia.umf.platform.ensemble.params.specs.ConstantParameterSpecification in project n2a by frothga.
the class ConstParamSpecDefPanel method setSpecification.
@Override
public void setSpecification(ParameterSpecification spec) {
ConstantParameterSpecification xspec = (ConstantParameterSpecification) spec;
txtValue.setText(xspec.getValue().toString());
}
Aggregations