org.rabbitcontrol.rcp.model.parameter.Int32Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rcp Show documentation
Show all versions of rcp Show documentation
RabbitControl is a binary data-format definition to describe data values and ui-elements.
The newest version!
package org.rabbitcontrol.rcp.model.parameter;
import org.rabbitcontrol.rcp.model.RcpTypes.Datatype;
public class Int32Parameter extends NumberParameter {
public Int32Parameter(final short _id) {
super(_id, Datatype.INT32);
}
@Override
public void setStringValue(final String _value) {
setValue(Integer.parseInt(_value));
}
}