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

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

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


/**
 * @author Lori Small
 */
public class IntegerDataObject extends ValuedDataObject {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy