modelnode.java

来自「一个利用图形编辑器生成BPEL代码的建模工具代码」· Java 代码 · 共 52 行

JAVA
52
字号
package org.bpel.model.node;

import java.util.*;
import org.bpel.model.parameter.*;

public class ModelNode {
	public ModelNode(PartnerLink pl, VariablePara vp) {
		partnerLink = pl;
		variables = vp;
	}
	public ModelNode() {
		
	}
	/*when we have to restore the attributes of the node
	 *invoke this method to make all the attributes that want to be input be in the required order
	 * 
	 */
	public void setAttriList() {
		//
	}
	public List<AttriSet> getAttriList() {
		return attributesList;
	}
	public String getName() {
		return name;
	}
	public ReferenceNode getRefNode(){
		return refNode;
	}
	public PartnerLink getPartnerLinkName() {
		return partnerLink;
	}
	public VariablePara getVariables() {
		return variables;
	}
	public Link getLink() {
		return link;
	}
	public boolean isContainer() {
		return isContainer;
	}
	//The attributes that needs to produce BPEL code
	protected List<AttriSet> attributesList; 
	protected String name;
	protected boolean isContainer;
	protected VariablePara variables;
	protected PartnerLink partnerLink;
	protected Link link;
	protected ReferenceNode refNode;
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?