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 /*
021 * Date: Sep 23, 2006
022 * Time: 10:01:48 AM
023 */
024 public final class HtmlAttributes {
025 public static final String STYLE = "style";
026 public static final String TYPE = "type";
027 public static final String NAME = "name";
028 public static final String ID = "id";
029 public static final String VALUE = "value";
030 public static final String FOR = "for";
031 public static final String TITLE = "title";
032 public static final String DISABLED = "disabled";
033 public static final String ONCLICK = "onclick";
034 public static final String SELECTED = "selected";
035 public static final String HREF = "href";
036 public static final String SRC = "src";
037 public static final String ALT = "alt";
038 public static final String WIDTH = "width";
039 public static final String BORDER = "border";
040 public static final String CHECKED = "checked";
041 public static final String SUMMARY = "summary";
042 public static final String HEIGHT = "height";
043 public static final String READONLY = "readonly";
044 public static final String ONCHANGE = "onchange";
045 public static final String CELLPADDING = "cellpadding";
046 public static final String CELLSPACING = "cellspacing";
047 public static final String ALIGN = "align";
048 public static final String VALIGN = "valign";
049 public static final String ROWSPAN = "rowspan";
050 public static final String COLSPAN = "colspan";
051 public static final String ONMOUSEOVER = "onmouseover";
052 public static final String ONMOUSEOUT = "onmouseout";
053 public static final String AUTOCOMPLETE = "autocomplete";
054 public static final String TARGET = "target";
055 public static final String SIZE = "size";
056 public static final String MULTIPLE = "multiple";
057 public static final String ROWS = "rows";
058 public static final String REL = "rel";
059 public static final String MEDIA = "media";
060 public static final String ONLOAD = "onload";
061 public static final String SCROLL = "scroll";
062 public static final String ACTION = "action";
063 public static final String METHOD = "method";
064 public static final String ENCTYPE = "enctype";
065 public static final String ACCEPT_CHARSET = "accept-charset";
066 public static final String ONFOCUS = "onfocus";
067 public static final String ONBLUR = "onblur";
068 public static final String ONKEYDOWN = "onkeydown";
069 public static final String ONKEYPRESS = "onkeypress";
070 public static final String ONKEYUP = "onkeyup";
071 public static final String CLASS = "class";
072 public static final String MAXLENGTH = "maxlength";
073 public static final String LABEL = "label";
074 public static final String TABINDEX = "tabindex";
075 public static final String FRAMEBORDER = "frameborder";
076 }
077