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