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.Tree; 29 30 import javax.faces.component.UIComponent; 31 import javax.faces.context.FacesContext; 32 33 34 40 public class TreeFactory extends ComponentFactoryBase { 41 42 53 public UIComponent create(FacesContext context, LayoutComponent descriptor, UIComponent parent) { 54 Tree tree = new Tree(); 56 57 if (parent != null) { 60 addChild(context, descriptor, parent, tree); 61 } 62 63 setOptions(context, descriptor, tree); 65 66 return tree; 68 } 69 } 70 | Popular Tags |