KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > def > Empty


1 package org.jbpm.bpel.def;
2
3
4 /**
5  * @see "WS-BPEL 2.0 §11.8"
6  * @author Juan Cantú
7  * @version $Revision: 1.2 $ $Date: 2005/05/31 00:49:53 $
8  */

9 public class Empty extends Activity {
10
11   private static final long serialVersionUID = 1L;
12
13   public Empty() {
14   }
15   
16   public Empty(String JavaDoc name) {
17     super(name);
18   }
19
20   /**{@inheritDoc}*/
21   public void accept(BpelVisitor visitor) {
22     visitor.visit(this);
23   }
24 }
25
Popular Tags