001    package org.apache.myfaces.tobago.renderkit.html;
002    
003    /*
004     * Licensed to the Apache Software Foundation (ASF) under one or more
005     * contributor license agreements.  See the NOTICE file distributed with
006     * this work for additional information regarding copyright ownership.
007     * The ASF licenses this file to You under the Apache License, Version 2.0
008     * (the "License"); you may not use this file except in compliance with
009     * the License.  You may obtain a copy of the License at
010     *
011     *      http://www.apache.org/licenses/LICENSE-2.0
012     *
013     * Unless required by applicable law or agreed to in writing, software
014     * distributed under the License is distributed on an "AS IS" BASIS,
015     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016     * See the License for the specific language governing permissions and
017     * limitations under the License.
018     */
019    
020    public final class HtmlElements {
021    
022      public static final String A = "a";
023      public static final String AREA = "area";
024      public static final String B = "b";
025      public static final String BASE = "base";
026      public static final String BODY = "body";
027      public static final String BR = "br";
028      public static final String BUTTON = "button";
029      public static final String COL = "col";
030      public static final String COLGROUP = "colgroup";
031      public static final String DIV = "div";
032      public static final String FIELDSET = "fieldset";
033      public static final String FORM = "form";
034      public static final String HEAD = "head";
035      public static final String HR = "hr";
036      public static final String HTML = "html";
037      public static final String IFRAME = "iframe";
038      public static final String IMG = "img";
039      public static final String INPUT = "input";
040      public static final String LABEL = "label";
041      public static final String LEGEND = "legend";
042      public static final String LI = "li";
043      public static final String LINK = "link";
044      public static final String META = "meta";
045      public static final String OL = "ol";
046      public static final String OPTGROUP = "optgroup";
047      public static final String OPTION = "option";
048      public static final String PARAM = "param";
049      public static final String SCRIPT = "script";
050      public static final String SELECT = "select";
051      public static final String SPAN = "span";
052      public static final String STYLE = "style";
053      public static final String TABLE = "table";
054      public static final String TD = "td";
055      public static final String TEXTAREA = "textarea";
056      public static final String TH = "th";
057      public static final String TITLE = "title";
058      public static final String TR = "tr";
059      public static final String U = "u";
060      public static final String UL = "ul";
061    
062      private HtmlElements() {
063    
064      }
065    }