?? processalternation.java
字號:
package com.oozinoz.process;
import java.util.*;
/*
* Copyright (c) 2001 Steven J. Metsker.
*
* Steve Metsker makes no representations or warranties about
* the fitness of this software for any particular purpose,
* including the implied warranty of merchantability.
*
* Please use this software as you wish with the sole
* restriction that you may not claim that you wrote it.
*/
/**
* Represent an "alternation" (a choice) of process steps.
*
* @author Steven J. Metsker
*
*/
public class ProcessAlternation
extends ProcessComposite
{
/**
* Create an alternation with the given name.
*
* @param id the name of this process alternation
*/
public ProcessAlternation(String name)
{
super(name);
}
/**
* Create an alternation with the given name and containing
* the given subprocesses.
*
* @param id the name of this alternation
* @param subprocesses the children of this alternation
*/
public ProcessAlternation(
String name,
ProcessComponent[] subprocesses)
{
super(name, subprocesses);
}
/**
* Create an alternation with the given name and containing
* the given subprocesses.
*
* @param id the name of this alternation
* @param subprocesses the children of this alternation
*/
public ProcessAlternation(String name, List subprocesses)
{
super(name, subprocesses);
}
/**
* This hook lets visitors add behaviors to the process
* composite. The point here is to call back the visitor
* indicating the type of this node, namely
* ProcessAlternation.
*
* @param visitor a visitor that will add some sort of
* behavior
*/
public void accept(ProcessVisitor v)
{
v.visit(this);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -