KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > xml > ExitReader


1 package org.jbpm.bpel.xml;
2
3 import org.jbpm.bpel.def.Activity;
4 import org.jbpm.bpel.def.Exit;
5
6 /**
7  * @author Juan Cantú
8  * @version $Revision: 1.1 $ $Date: 2005/04/08 18:35:26 $
9  */

10 public class ExitReader extends ActivityReader {
11
12   protected Activity createActivity() {
13     return new Exit();
14   }
15 }
16
Popular Tags