KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > spi > ojb > OJBCurrentStep


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.workflow.spi.ojb;
6
7
8 /**
9  * @author picard
10  * Created on 9 sept. 2003
11  */

12 public class OJBCurrentStep extends OJBStep {
13     //~ Constructors ///////////////////////////////////////////////////////////
14

15     public OJBCurrentStep() {
16         super();
17     }
18
19     public OJBCurrentStep(OJBStep step) {
20         super(step);
21     }
22 }
23
Popular Tags