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 HtmlConstants { 021 public static final String LABEL = "label"; 022 public static final String TABLE = "table"; 023 public static final String FIELDSET = "fieldset"; 024 public static final String STYLE = "style"; 025 public static final String LEGEND = "legend"; 026 public static final String DIV = "div"; 027 public static final String BR = "br"; 028 public static final String B = "b"; 029 public static final String U = "u"; 030 public static final String SPAN = "span"; 031 public static final String IMG = "img"; 032 public static final String TR = "tr"; 033 public static final String TH = "th"; 034 public static final String TD = "td"; 035 public static final String BUTTON = "button"; 036 public static final String INPUT = "input"; 037 public static final String SELECT = "select"; 038 public static final String OPTION = "option"; 039 public static final String A = "a"; 040 public static final String TEXTAREA = "textarea"; 041 public static final String COLGROUP = "colgroup"; 042 public static final String COL = "col"; 043 public static final String UL = "ul"; 044 public static final String LI = "li"; 045 public static final String IFRAME = "iframe"; 046 public static final String HTML = "html"; 047 public static final String HEAD = "head"; 048 public static final String HR = "hr"; 049 public static final String TITLE = "title"; 050 public static final String LINK = "link"; 051 public static final String BODY = "body"; 052 public static final String FORM = "form"; 053 public static final String SCRIPT = "script"; 054 public static final String META = "meta"; 055 public static final String OPTGROUP = "optgroup"; 056 public static final String AREA = "area"; 057 public static final String PARAM = "param"; 058 public static final String BASE = "base"; 059 060 private HtmlConstants() { 061 062 } 063 }