Lines Matching refs:Attribute

60   public static final class Attribute  class in HTML
65 public static final Attribute ACTION = new Attribute("action");
70 public static final Attribute ALIGN = new Attribute("align");
75 public static final Attribute ALINK = new Attribute("alink");
80 public static final Attribute ALT = new Attribute("alt");
85 public static final Attribute ARCHIVE = new Attribute("archive");
90 public static final Attribute BACKGROUND = new Attribute("background");
95 public static final Attribute BGCOLOR = new Attribute("bgcolor");
100 public static final Attribute BORDER = new Attribute("border");
105 public static final Attribute CELLPADDING = new Attribute("cellpadding");
110 public static final Attribute CELLSPACING = new Attribute("cellspacing");
115 public static final Attribute CHECKED = new Attribute("checked");
120 public static final Attribute CLASS = new Attribute("class");
125 public static final Attribute CLASSID = new Attribute("classid");
130 public static final Attribute CLEAR = new Attribute("clear");
135 public static final Attribute CODE = new Attribute("code");
140 public static final Attribute CODEBASE = new Attribute("codebase");
145 public static final Attribute CODETYPE = new Attribute("codetype");
150 public static final Attribute COLOR = new Attribute("color");
155 public static final Attribute COLS = new Attribute("cols");
160 public static final Attribute COLSPAN = new Attribute("colspan");
165 public static final Attribute COMMENT = new Attribute("comment");
170 public static final Attribute COMPACT = new Attribute("compact");
175 public static final Attribute CONTENT = new Attribute("content");
180 public static final Attribute COORDS = new Attribute("coords");
185 public static final Attribute DATA = new Attribute("data");
190 public static final Attribute DECLARE = new Attribute("declare");
195 public static final Attribute DIR = new Attribute("dir");
200 public static final Attribute DUMMY = new Attribute("dummy");
205 public static final Attribute ENCTYPE = new Attribute("enctype");
210 public static final Attribute ENDTAG = new Attribute("endtag");
215 public static final Attribute FACE = new Attribute("face");
220 public static final Attribute FRAMEBORDER = new Attribute("frameborder");
225 public static final Attribute HALIGN = new Attribute("halign");
230 public static final Attribute HEIGHT = new Attribute("height");
235 public static final Attribute HREF = new Attribute("href");
240 public static final Attribute HSPACE = new Attribute("hspace");
245 public static final Attribute HTTPEQUIV = new Attribute("http-equiv");
250 public static final Attribute ID = new Attribute("id");
255 public static final Attribute ISMAP = new Attribute("ismap");
260 public static final Attribute LANG = new Attribute("lang");
265 public static final Attribute LANGUAGE = new Attribute("language");
270 public static final Attribute LINK = new Attribute("link");
275 public static final Attribute LOWSRC = new Attribute("lowsrc");
280 public static final Attribute MARGINHEIGHT = new Attribute("marginheight");
285 public static final Attribute MARGINWIDTH = new Attribute("marginwidth");
290 public static final Attribute MAXLENGTH = new Attribute("maxlength");
295 static final Attribute MEDIA = new Attribute("media");
300 public static final Attribute METHOD = new Attribute("method");
305 public static final Attribute MULTIPLE = new Attribute("multiple");
310 public static final Attribute N = new Attribute("n");
315 public static final Attribute NAME = new Attribute("name");
320 public static final Attribute NOHREF = new Attribute("nohref");
325 public static final Attribute NORESIZE = new Attribute("noresize");
330 public static final Attribute NOSHADE = new Attribute("noshade");
335 public static final Attribute NOWRAP = new Attribute("nowrap");
340 public static final Attribute PROMPT = new Attribute("prompt");
345 public static final Attribute REL = new Attribute("rel");
350 public static final Attribute REV = new Attribute("rev");
355 public static final Attribute ROWS = new Attribute("rows");
360 public static final Attribute ROWSPAN = new Attribute("rowspan");
365 public static final Attribute SCROLLING = new Attribute("scrolling");
370 public static final Attribute SELECTED = new Attribute("selected");
375 public static final Attribute SHAPE = new Attribute("shape");
380 public static final Attribute SHAPES = new Attribute("shapes");
385 public static final Attribute SIZE = new Attribute("size");
390 public static final Attribute SRC = new Attribute("src");
395 public static final Attribute STANDBY = new Attribute("standby");
400 public static final Attribute START = new Attribute("start");
405 public static final Attribute STYLE = new Attribute("style");
410 public static final Attribute TARGET = new Attribute("target");
415 public static final Attribute TEXT = new Attribute("text");
420 public static final Attribute TITLE = new Attribute("title");
425 public static final Attribute TYPE = new Attribute("type");
430 public static final Attribute USEMAP = new Attribute("usemap");
435 public static final Attribute VALIGN = new Attribute("valign");
440 public static final Attribute VALUE = new Attribute("value");
445 public static final Attribute VALUETYPE = new Attribute("valuetype");
450 public static final Attribute VERSION = new Attribute("version");
455 public static final Attribute VLINK = new Attribute("vlink");
460 public static final Attribute VSPACE = new Attribute("vspace");
465 public static final Attribute WIDTH = new Attribute("width");
470 static final Attribute PSEUDO_CLASS = new Attribute("_pseudo");
475 static final Attribute DYNAMIC_CLASS = new Attribute("_dynamic");
485 private Attribute(String a_name) in Attribute() method in HTML.Attribute
504 static Attribute[] getAllAttributes() in getAllAttributes()
506 Field[] f = Attribute.class.getFields(); in getAllAttributes()
507 Attribute[] attrs = new Attribute[ f.length ]; in getAllAttributes()
510 Attribute a; in getAllAttributes()
518 if (x.getType().equals(Attribute.class)) in getAllAttributes()
522 a = (Attribute) x.get(null); in getAllAttributes()
1133 private static Map<String,Attribute> attrMap;
1148 public static HTML.Attribute[] getAllAttributeKeys() in getAllAttributeKeys()
1150 return Attribute.getAllAttributes(); in getAllAttributeKeys()
1167 public static Attribute getAttributeKey(String attName) in getAttributeKey()
1172 attrMap = new TreeMap<String,Attribute>(); in getAttributeKey()
1174 Attribute[] attrs = getAllAttributeKeys(); in getAttributeKey()
1210 HTML.Attribute attribute, in getIntegerAttributeValue()