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

org.activiti.bpmn.model.DoubleDataObject Maven / Gradle / Ivy

There is a newer version: 7.1.0.M6
Show newest version
package org.activiti.bpmn.model;

public class DoubleDataObject extends ValuedDataObject {

  public void setValue(Object value) {
    this.value = Double.valueOf(value.toString());
  }

  public DoubleDataObject clone() {
    DoubleDataObject clone = new DoubleDataObject();
    clone.setValues(this);
    return clone;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy