Lines Matching refs:Attribute

639     public static final class Attribute {  class in HTML
647 Attribute(String id) { in Attribute() method in HTML.Attribute
665 public static final Attribute SIZE = new Attribute("size");
670 public static final Attribute COLOR = new Attribute("color");
675 public static final Attribute CLEAR = new Attribute("clear");
680 public static final Attribute BACKGROUND = new Attribute("background");
685 public static final Attribute BGCOLOR = new Attribute("bgcolor");
690 public static final Attribute TEXT = new Attribute("text");
695 public static final Attribute LINK = new Attribute("link");
700 public static final Attribute VLINK = new Attribute("vlink");
705 public static final Attribute ALINK = new Attribute("alink");
710 public static final Attribute WIDTH = new Attribute("width");
715 public static final Attribute HEIGHT = new Attribute("height");
720 public static final Attribute ALIGN = new Attribute("align");
725 public static final Attribute NAME = new Attribute("name");
730 public static final Attribute HREF = new Attribute("href");
735 public static final Attribute REL = new Attribute("rel");
740 public static final Attribute REV = new Attribute("rev");
745 public static final Attribute TITLE = new Attribute("title");
750 public static final Attribute TARGET = new Attribute("target");
755 public static final Attribute SHAPE = new Attribute("shape");
760 public static final Attribute COORDS = new Attribute("coords");
765 public static final Attribute ISMAP = new Attribute("ismap");
770 public static final Attribute NOHREF = new Attribute("nohref");
775 public static final Attribute ALT = new Attribute("alt");
780 public static final Attribute ID = new Attribute("id");
785 public static final Attribute SRC = new Attribute("src");
790 public static final Attribute HSPACE = new Attribute("hspace");
795 public static final Attribute VSPACE = new Attribute("vspace");
800 public static final Attribute USEMAP = new Attribute("usemap");
805 public static final Attribute LOWSRC = new Attribute("lowsrc");
810 public static final Attribute CODEBASE = new Attribute("codebase");
815 public static final Attribute CODE = new Attribute("code");
820 public static final Attribute ARCHIVE = new Attribute("archive");
825 public static final Attribute VALUE = new Attribute("value");
830 public static final Attribute VALUETYPE = new Attribute("valuetype");
835 public static final Attribute TYPE = new Attribute("type");
840 public static final Attribute CLASS = new Attribute("class");
845 public static final Attribute STYLE = new Attribute("style");
850 public static final Attribute LANG = new Attribute("lang");
855 public static final Attribute FACE = new Attribute("face");
860 public static final Attribute DIR = new Attribute("dir");
865 public static final Attribute DECLARE = new Attribute("declare");
870 public static final Attribute CLASSID = new Attribute("classid");
875 public static final Attribute DATA = new Attribute("data");
880 public static final Attribute CODETYPE = new Attribute("codetype");
885 public static final Attribute STANDBY = new Attribute("standby");
890 public static final Attribute BORDER = new Attribute("border");
895 public static final Attribute SHAPES = new Attribute("shapes");
900 public static final Attribute NOSHADE = new Attribute("noshade");
905 public static final Attribute COMPACT = new Attribute("compact");
910 public static final Attribute START = new Attribute("start");
915 public static final Attribute ACTION = new Attribute("action");
920 public static final Attribute METHOD = new Attribute("method");
925 public static final Attribute ENCTYPE = new Attribute("enctype");
930 public static final Attribute CHECKED = new Attribute("checked");
935 public static final Attribute MAXLENGTH = new Attribute("maxlength");
940 public static final Attribute MULTIPLE = new Attribute("multiple");
945 public static final Attribute SELECTED = new Attribute("selected");
950 public static final Attribute ROWS = new Attribute("rows");
955 public static final Attribute COLS = new Attribute("cols");
960 public static final Attribute DUMMY = new Attribute("dummy");
965 public static final Attribute CELLSPACING = new Attribute("cellspacing");
970 public static final Attribute CELLPADDING = new Attribute("cellpadding");
975 public static final Attribute VALIGN = new Attribute("valign");
980 public static final Attribute HALIGN = new Attribute("halign");
985 public static final Attribute NOWRAP = new Attribute("nowrap");
990 public static final Attribute ROWSPAN = new Attribute("rowspan");
995 public static final Attribute COLSPAN = new Attribute("colspan");
1000 public static final Attribute PROMPT = new Attribute("prompt");
1005 public static final Attribute HTTPEQUIV = new Attribute("http-equiv");
1010 public static final Attribute CONTENT = new Attribute("content");
1015 public static final Attribute LANGUAGE = new Attribute("language");
1020 public static final Attribute VERSION = new Attribute("version");
1025 public static final Attribute N = new Attribute("n");
1030 public static final Attribute FRAMEBORDER = new Attribute("frameborder");
1035 public static final Attribute MARGINWIDTH = new Attribute("marginwidth");
1040 public static final Attribute MARGINHEIGHT = new Attribute("marginheight");
1045 public static final Attribute SCROLLING = new Attribute("scrolling");
1050 public static final Attribute NORESIZE = new Attribute("noresize");
1055 public static final Attribute ENDTAG = new Attribute("endtag");
1060 public static final Attribute COMMENT = new Attribute("comment");
1061 static final Attribute MEDIA = new Attribute("media");
1063 static final Attribute[] allAttributes = {
1167 for (int i = 0; i < Attribute.allAttributes.length; i++) {
1168 StyleContext.registerStaticAttributeKey(Attribute.
1248 Attribute key, int def) { in getIntegerAttributeValue()
1268 …private static final Hashtable<String, Attribute> attHashtable = new Hashtable<String, Attribute>(…
1272 for (int i = 0; i < Attribute.allAttributes.length; i++ ) {
1273 attHashtable.put(Attribute.allAttributes[i].toString(), Attribute.allAttributes[i]); in attHashtable.put()
1281 public static Attribute[] getAllAttributeKeys() { in getAllAttributeKeys()
1282 Attribute[] attributes = new Attribute[Attribute.allAttributes.length]; in getAllAttributeKeys()
1283 System.arraycopy(Attribute.allAttributes, 0, in getAllAttributeKeys()
1284 attributes, 0, Attribute.allAttributes.length); in getAllAttributeKeys()
1308 public static Attribute getAttributeKey(String attName) { in getAttributeKey()
1309 Attribute a = attHashtable.get(attName); in getAttributeKey()