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

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

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


public class Import extends BaseElement {

  protected String importType;
  protected String location;
  protected String namespace;
  
  public String getImportType() {
    return importType;
  }
  public void setImportType(String importType) {
    this.importType = importType;
  }
  public String getLocation() {
    return location;
  }
  public void setLocation(String location) {
    this.location = location;
  }
  public String getNamespace() {
    return namespace;
  }
  public void setNamespace(String namespace) {
    this.namespace = namespace;
  }
  
  public Import clone() {
    Import clone = new Import();
    clone.setValues(this);
    return clone;
  }
  
  public void setValues(Import otherElement) {
    super.setValues(otherElement);
    setImportType(otherElement.getImportType());
    setLocation(otherElement.getLocation());
    setNamespace(otherElement.getNamespace());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy