1 5 package org.exoplatform.faces.test; 6 7 import java.util.ResourceBundle ; 8 import javax.faces.component.UIComponentBase ; 9 import org.exoplatform.services.log.LogService; 10 16 public class UIComponent2 extends UIComponentBase { 17 18 public UIComponent2() { 19 20 } 21 22 public UIComponent2(LogService service, ResourceBundle 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 getFamily() { return "" ; } 29 } | Popular Tags |