001    package edu.nrao.sss.webapp.faces.tag;
002    
003    import javax.faces.webapp.UIComponentTag;
004    
005    /**
006     * This class connects the JSF <code>else</code> tag to the FalseUIComponent.
007     * This tag has no attributes.
008     * @author btruitt
009     * @see edu.nrao.sss.webapp.faces.component.FalseUIComponent
010     */
011    public class FalseTag extends UIComponentTag 
012    {
013            // Associate the renderer and component type. Same type as recorded in
014            // faces-config.xml.
015            public String getComponentType() { return "edu.nrao.sss.False"; }
016            public String getRendererType() { return null; }
017    }