KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > designer > proxy > SplitProxy


1 /*
2  * Created on 2003-11-23
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package com.opensymphony.workflow.designer.proxy;
8
9 import com.opensymphony.workflow.loader.SplitDescriptor;
10
11 /**
12  * @author baab
13  *
14  * To change the template for this generated type comment go to
15  * Window>Preferences>Java>Code Generation>Code and Comments
16  */

17 public class SplitProxy {
18     private SplitDescriptor split;
19     
20     public SplitProxy(SplitDescriptor split){
21         this.split = split;
22     }
23     
24     public String JavaDoc toString(){
25         return "Split id " + split.getId();
26     }
27
28 }
29
Popular Tags