KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > faces > test > UIComponent2


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.faces.test;
6
7 import java.util.ResourceBundle JavaDoc ;
8 import javax.faces.component.UIComponentBase ;
9 import org.exoplatform.services.log.LogService;
10 /**
11  * Wed, Dec 22, 2003 @ 23:14
12  * @author: Tuan Nguyen
13  * @email: tuan08@users.sourceforge.net
14  * @version: $Id: UIComponent2.java,v 1.3 2004/06/03 22:51:36 tuan08 Exp $
15  */

16 public class UIComponent2 extends UIComponentBase {
17     
18     public UIComponent2() {
19         
20     }
21     
22     public UIComponent2(LogService service, ResourceBundle JavaDoc res) {
23         System.out.println("Call constructor UIComponent1(LogService)") ;
24         System.out.println("LogService : " + service) ;
25         System.out.println("ResourceBundle : " + res) ;
26     }
27     
28     public String JavaDoc getFamily() { return "" ; }
29 }
Popular Tags