Coverage Report - org.apache.myfaces.view.facelets.tag.jsf.html.HtmlLibrary
 
Classes in this File Line Coverage Branch Coverage Complexity
HtmlLibrary
0%
0/36
N/A
1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.myfaces.view.facelets.tag.jsf.html;
 20  
 
 21  
 /**
 22  
  * @author Jacob Hookom
 23  
  * @version $Id$
 24  
  */
 25  
 public final class HtmlLibrary extends AbstractHtmlLibrary
 26  
 {
 27  
 
 28  
     public final static String NAMESPACE = "http://xmlns.jcp.org/jsf/html";
 29  
     public final static String ALIAS_NAMESPACE = "http://java.sun.com/jsf/html";
 30  
 
 31  0
     public final static HtmlLibrary INSTANCE = new HtmlLibrary();
 32  
 
 33  
     public HtmlLibrary()
 34  
     {
 35  0
         super(NAMESPACE, ALIAS_NAMESPACE);
 36  
         
 37  0
         this.addHtmlComponent ("body", "javax.faces.OutputBody", "javax.faces.Body");
 38  
         
 39  0
         this.addHtmlComponent ("button", "javax.faces.HtmlOutcomeTargetButton", "javax.faces.Button");
 40  
         
 41  0
         this.addHtmlComponent("column", "javax.faces.HtmlColumn", null);
 42  
 
 43  0
         this.addHtmlComponent("commandButton", "javax.faces.HtmlCommandButton", "javax.faces.Button");
 44  
 
 45  0
         this.addHtmlComponent("commandLink", "javax.faces.HtmlCommandLink", "javax.faces.Link");
 46  
 
 47  0
         this.addHtmlComponent("dataTable", "javax.faces.HtmlDataTable", "javax.faces.Table");
 48  
 
 49  0
         this.addHtmlComponent("doctype", "javax.faces.OutputDoctype", "javax.faces.Doctype");
 50  
         
 51  0
         this.addHtmlComponent("form", "javax.faces.HtmlForm", "javax.faces.Form");
 52  
 
 53  0
         this.addHtmlComponent("graphicImage", "javax.faces.HtmlGraphicImage", "javax.faces.Image");
 54  
         
 55  0
         this.addHtmlComponent ("head", "javax.faces.OutputHead", "javax.faces.Head");
 56  
         
 57  0
         this.addHtmlComponent("inputHidden", "javax.faces.HtmlInputHidden", "javax.faces.Hidden");
 58  
 
 59  0
         this.addHtmlComponent("inputSecret", "javax.faces.HtmlInputSecret", "javax.faces.Secret");
 60  
 
 61  0
         this.addHtmlComponent("inputText", "javax.faces.HtmlInputText", "javax.faces.Text");
 62  
 
 63  0
         this.addHtmlComponent("inputTextarea", "javax.faces.HtmlInputTextarea", "javax.faces.Textarea");
 64  
 
 65  0
         this.addHtmlComponent("inputFile", "javax.faces.HtmlInputFile", "javax.faces.File");
 66  
         
 67  0
         this.addHtmlComponent ("link", "javax.faces.HtmlOutcomeTargetLink", "javax.faces.Link");
 68  
         
 69  0
         this.addHtmlComponent("message", "javax.faces.HtmlMessage", "javax.faces.Message");
 70  
 
 71  0
         this.addHtmlComponent("messages", "javax.faces.HtmlMessages", "javax.faces.Messages");
 72  
 
 73  0
         this.addHtmlComponent("outputFormat", "javax.faces.HtmlOutputFormat", "javax.faces.Format");
 74  
 
 75  0
         this.addHtmlComponent("outputLabel", "javax.faces.HtmlOutputLabel", "javax.faces.Label");
 76  
 
 77  0
         this.addHtmlComponent("outputLink", "javax.faces.HtmlOutputLink", "javax.faces.Link");
 78  
         
 79  0
         this.addComponent("outputScript", "javax.faces.Output", "javax.faces.resource.Script",
 80  
                           HtmlOutputScriptHandler.class);
 81  
         
 82  0
         this.addComponent("outputStylesheet", "javax.faces.Output", "javax.faces.resource.Stylesheet",
 83  
                           HtmlOutputStylesheetHandler.class);
 84  
         
 85  0
         this.addHtmlComponent("outputText", "javax.faces.HtmlOutputText", "javax.faces.Text");
 86  
 
 87  0
         this.addHtmlComponent("panelGrid", "javax.faces.HtmlPanelGrid", "javax.faces.Grid");
 88  
 
 89  0
         this.addHtmlComponent("panelGroup", "javax.faces.HtmlPanelGroup", "javax.faces.Group");
 90  
 
 91  0
         this.addHtmlComponent("selectBooleanCheckbox", "javax.faces.HtmlSelectBooleanCheckbox", "javax.faces.Checkbox");
 92  
 
 93  0
         this.addHtmlComponent("selectManyCheckbox", "javax.faces.HtmlSelectManyCheckbox", "javax.faces.Checkbox");
 94  
 
 95  0
         this.addHtmlComponent("selectManyListbox", "javax.faces.HtmlSelectManyListbox", "javax.faces.Listbox");
 96  
 
 97  0
         this.addHtmlComponent("selectManyMenu", "javax.faces.HtmlSelectManyMenu", "javax.faces.Menu");
 98  
 
 99  0
         this.addHtmlComponent("selectOneListbox", "javax.faces.HtmlSelectOneListbox", "javax.faces.Listbox");
 100  
 
 101  0
         this.addHtmlComponent("selectOneMenu", "javax.faces.HtmlSelectOneMenu", "javax.faces.Menu");
 102  
 
 103  0
         this.addHtmlComponent("selectOneRadio", "javax.faces.HtmlSelectOneRadio", "javax.faces.Radio");
 104  0
     }
 105  
 
 106  
 }