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

org.yaoqiang.bpmn.model.elements.collaboration.MessageFlowAssociations Maven / Gradle / Ivy

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

import org.yaoqiang.bpmn.model.elements.XMLCollection;
import org.yaoqiang.bpmn.model.elements.XMLElement;

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

	private static final long serialVersionUID = 4240911666171136833L;

	public MessageFlowAssociations(Collaboration parent) {
		super(parent, "messageFlowAssociations");
	}

	public XMLElement generateNewElement() {
		return new MessageFlowAssociation(this);
	}

	public String getElementName() {
		return "messageFlowAssociation";
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy