/** * */ package jalview.ws.params; import compbio.metadata.ValueConstrain.Type; /** * @author JimP * */ public interface ValueConstrainI { // TODO: remove dependence on ValueConstraint.Type Type getType(); Number getMax(); Number getMin(); }