📄 processobject.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -