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

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

The newest version!
package org.activiti.bpmn.model;


/**
 * @author Lori Small
 */
public abstract class ValuedDataObject extends DataObject {

  protected Object value;
  
  public Object getValue() {
    return value;
  }

  public abstract void setValue(Object value);
  
  public abstract ValuedDataObject clone();

  public void setValues(ValuedDataObject otherElement) {
    super.setValues(otherElement);
    if (otherElement.getValue() != null) {
      setValue(otherElement.getValue());
    }
  }
  
  public boolean equals(ValuedDataObject otherObject) {
    
    if (!otherObject.getItemSubjectRef().getStructureRef().equals(this.itemSubjectRef.getStructureRef())) return false;
    if (!otherObject.getId().equals(this.id)) return false;
    if (!otherObject.getName().equals(this.name)) return false;
    if (!otherObject.getValue().equals(this.value.toString())) return false;
    
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy