All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rabbitcontrol.rcp.model.parameter.Int32Parameter Maven / Gradle / Ivy

Go to download

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy