KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > wizard > WizardComponentTag


1 package com.tonbeller.wcf.wizard;
2
3 import com.tonbeller.wcf.component.Component;
4 import com.tonbeller.wcf.component.ComponentTag;
5 import com.tonbeller.wcf.controller.RequestContext;
6
7 /**
8  * @author av
9  */

10 public class WizardComponentTag extends ComponentTag {
11
12   protected Component createComponent(RequestContext context) throws Exception JavaDoc {
13     return new WizardComponent(id, null);
14   }
15
16 }
17
Popular Tags