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

org.yaoqiang.bpmn.model.elements.data.InputOutputBinding Maven / Gradle / Ivy

package org.yaoqiang.bpmn.model.elements.data;

import org.yaoqiang.bpmn.model.elements.XMLAttribute;
import org.yaoqiang.bpmn.model.elements.core.foundation.BaseElement;

/**
 * InputOutputBinding
 * 
 * @author Shi Yaoqiang([email protected])
 */
public class InputOutputBinding extends BaseElement {

	private static final long serialVersionUID = 7426418451976810597L;

	public InputOutputBinding(InputOutputBindings parent) {
		super(parent, "ioBinding");
	}

	protected void fillStructure() {
		XMLAttribute attrInputDataRef = new XMLAttribute(this, "inputDataRef");
		XMLAttribute attrOutputDataRef = new XMLAttribute(this, "outputDataRef");
		XMLAttribute attrOperationRef = new XMLAttribute(this, "operationRef");

		super.fillStructure();
		add(attrInputDataRef);
		add(attrOutputDataRef);
		add(attrOperationRef);
	}

	public InputOutputBindings getParent() {
		return (InputOutputBindings) parent;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy