1 23 package com.sun.enterprise.tools.jsfext.component.factory.basic; 24 25 import com.sun.enterprise.tools.jsfext.component.factory.ComponentFactoryBase; 26 import com.sun.enterprise.tools.jsfext.layout.descriptor.LayoutComponent; 27 28 import com.sun.web.ui.component.Label; 29 30 import javax.faces.component.UIComponent; 31 import javax.faces.context.FacesContext; 32 33 34 40 public class LabelFactory extends ComponentFactoryBase { 41 42 53 public UIComponent create(FacesContext context, LayoutComponent descriptor, UIComponent parent) { 54 Label label = new Label(); 56 57 if (parent != null) { 60 addChild(context, descriptor, parent, label); 61 } 62 63 setOptions(context, descriptor, label); 65 66 return label; 68 } 69 } 70 | Popular Tags |