processobject.java

来自「java实现的可配置的工作流引擎,采用jsp+javabean实现」· Java 代码 · 共 75 行

JAVA
75
字号
/*
 * Created on 2004-10-9
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package com.hongsoft.agile.hpdl;
import java.util.*;

/**
 * @author hongsoft.com
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class ProcessObject {
	private String processDefId;
	private String processName;
	//if the process has no parent,then the parentProcessId will be nill or ""
	//if the process has no parent,then it is Main process,can be started by user
	private String parentProcessDefId;
	//第一个活动可能有多个,所以这里不应该有该属性private String firstActivityDefId;
	private List activityObjectList=new ArrayList();
	

	/**
	 * @return Returns the activityObjectList.
	 */
	public List getActivityObjectList() {
		return activityObjectList;
	}
	/**
	 * @param activityObjectList The activityObjectList to set.
	 */
	public void setActivityObjectList(List activityObjectList) {
		this.activityObjectList = activityObjectList;
	}	
	/**
	 * @return Returns the parentProcessDefId.
	 */
	public String getParentProcessDefId() {
		return parentProcessDefId;
	}
	/**
	 * @param parentProcessDefId The parentProcessDefId to set.
	 */
	public void setParentProcessDefId(String parentProcessDefId) {
		this.parentProcessDefId = parentProcessDefId;
	}
	/**
	 * @return Returns the processDefId.
	 */
	public String getProcessDefId() {
		return processDefId;
	}
	/**
	 * @param processDefId The processDefId to set.
	 */
	public void setProcessDefId(String processDefId) {
		this.processDefId = processDefId;
	}
	/**
	 * @return Returns the processName.
	 */
	public String getProcessName() {
		return processName;
	}
	/**
	 * @param processName The processName to set.
	 */
	public void setProcessName(String processName) {
		this.processName = processName;
	}
}

⌨️ 快捷键说明

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