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

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

package org.activiti.bpmn.model;

public class ItemDefinition extends BaseElement {

  protected String structureRef;
  protected String itemKind;

  public String getStructureRef() {
    return structureRef;
  }

  public void setStructureRef(String structureRef) {
    this.structureRef = structureRef;
  }

  public String getItemKind() {
    return itemKind;
  }

  public void setItemKind(String itemKind) {
    this.itemKind = itemKind;
  }

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

  public void setValues(ItemDefinition otherElement) {
    super.setValues(otherElement);
    setStructureRef(otherElement.getStructureRef());
    setItemKind(otherElement.getItemKind());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy