Package org.apache.myfaces.config.impl.digester.elements.facelets

Examples of org.apache.myfaces.config.impl.digester.elements.facelets.FaceletComponentTagImpl


                    {
                        if (this.handlerClass != null)
                        {
                            //impl.putComponent(this.tagName, this.componentType, this.rendererType, this.handlerClass);
                            getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
                                new FaceletComponentTagImpl(this.componentType, this.rendererType,
                                    this.handlerClass, null)));
                            this.handlerClass = null;
                        }
                        else if (this.resourceId != null)
                        {
                            //impl.putComponentFromResourceId(this.tagName, this.resourceId);
                            getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
                                new FaceletComponentTagImpl(null, null, null, this.resourceId)));
                            this.resourceId = null;
                            this.handlerClass = null;
                        }
                        else
                        {
                            getLibraryImpl().addTag(new FaceletTagImpl(this.tagName,
                                new FaceletComponentTagImpl(this.componentType, this.rendererType, null, null)));
                            this.handlerClass = null;
                            //impl.putComponent(this.tagName, this.componentType, this.rendererType);
                        }
                    }
                    else if ("converter-id".equals(qName))
View Full Code Here

TOP

Related Classes of org.apache.myfaces.config.impl.digester.elements.facelets.FaceletComponentTagImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.