路由類型
|
運算式
|
票數
|
結果
|
「手動獨佔」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.any(self, userEvents); |
黃色 9
藍色 0
紅色 1
|
黃色與紅色
|
路由類型
|
運算式
|
票數
|
結果
|
「手動」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.all(self, userEvents); |
黃色 8
藍色 3
紅色 9
|
沒有新襯衫
|
路由類型
|
運算式
|
票數
|
結果
|
「手動獨佔」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Specify the result. result = WfTally.all(self, "Blue", "Red"); if (result != "Blue") { result = WfTally.all(self, "Yellow", "Red"); } |
黃色 8
藍色 2
紅色 0
|
紅色
|
路由類型
|
運算式
|
票數
|
結果
|
「手動」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.percent(self, WfTally.GT, 30, userEvents); |
黃色 7
藍色 4
紅色 2
|
黃色與藍色
|
路由類型
|
運算式
|
票數
|
結果
|
「手動」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.number(self, WfTally.GTE, 3, userEvents); |
黃色 2
藍色 9
紅色 3
|
藍色與紅色
|
路由類型
|
運算式
|
票數
|
結果
|
「手動獨佔」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.plurality(self, userEvents); |
黃色 2
藍色 4
紅色 4
|
藍色與紅色
|
路由類型
|
運算式
|
票數
|
結果
|
「手動獨佔」
|
//Get the object that represents this activity.
WfAssignedActivity mySelf = ((WfAssignedActivity)self.getObject()); //Get the routing events for this activity. Vector userEvents = (Vector)mySelf.getUserEventList(); //Specify the result. result = WfTally.notPlurality(self, userEvents); |
黃色 2
藍色 4
紅色 4
|
黃色
|