KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > portlets > user > component > UINewAccountPortlet


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.portlets.user.component ;
6
7 import org.exoplatform.faces.core.component.UIPortlet;
8 /**
9  * Wed, Dec 22, 2003 @ 23:14
10  * @author: Tuan Nguyen
11  * @email: tuan08@users.sourceforge.net
12  * @version: $Id: UIIC3LoginPortlet.java,v 1.1 2004/11/01 15:21:42 tuan08 Exp $
13  */

14 public class UINewAccountPortlet extends UIPortlet {
15     
16     public UINewAccountPortlet() throws Exception JavaDoc {
17     setRendererType("ChildrenRenderer");
18     UIAccountForm comp = (UIAccountForm)addChild(UIAccountForm.class) ;
19     comp.customizeNewAccountForm() ;
20     }
21 }
22
Popular Tags