📄 activityobject.java
字号:
/*
* Created on 2004-10-10
*
* 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.*;
/**
* joinType可以取值:and/xor
* and:表示前面的活动的所有condition都满足(或没有)才能开始本活动
* xor:表示前面的活动,有一个满足(或没有condition)都可以开始本活动
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class ActivityObject {
private String activityDefId;
private String activityDefName;
//if the activity is a subProcess,then here is the corresponding subProcess Def id
private String correspondingSubProcessDefId="";
private String joinType="and";
private List nextActivityList=new ArrayList();
private List preActivityList=new ArrayList();
/**
* @return Returns the activityDefId.
*/
public String getActivityDefId() {
return activityDefId;
}
/**
* @param activityDefId The activityDefId to set.
*/
public void setActivityDefId(String activityDefId) {
this.activityDefId = activityDefId;
}
/**
* @return Returns the activityDefName.
*/
public String getActivityDefName() {
return activityDefName;
}
/**
* @param activityDefName The activityDefName to set.
*/
public void setActivityDefName(String activityDefName) {
this.activityDefName = activityDefName;
}
/**
* @return Returns the correspondingSubProcessDefId.
*/
public String getCorrespondingSubProcessDefId() {
return correspondingSubProcessDefId;
}
/**
* @param correspondingSubProcessDefId The correspondingSubProcessDefId to set.
*/
public void setCorrespondingSubProcessDefId(
String correspondingSubProcessDefId) {
this.correspondingSubProcessDefId = correspondingSubProcessDefId;
}
/**
* @return Returns the nextActivityList.
*/
public List getNextActivityList() {
return nextActivityList;
}
/**
* @param nextActivityList The nextActivityList to set.
*/
public void setNextActivityList(List nextActivityList) {
this.nextActivityList = nextActivityList;
}
/**
* @return Returns the joinType.
*/
public String getJoinType() {
return joinType;
}
/**
* @param joinType The joinType to set.
*/
public void setJoinType(String joinType) {
this.joinType = joinType;
}
/**
* @return Returns the preActivityList.
*/
public List getPreActivityList() {
return preActivityList;
}
/**
* @param preActivityList The preActivityList to set.
*/
public void setPreActivityList(List preActivityList) {
this.preActivityList = preActivityList;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -