Home | History | Annotate | Download | only in doc

Lines Matching defs:Attribute

7  * $Id: Attribute.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Attribute implements IContent
22 public static final Attribute ID = new AttributeImpl ("ID");
23 public static final Attribute NAME = new AttributeImpl ("NAME");
24 public static final Attribute TITLE = new AttributeImpl ("TITLE");
25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
26 public static final Attribute CLASS = new AttributeImpl ("CLASS");
27 public static final Attribute HTTP_EQUIV = new AttributeImpl ("HTTP-EQUIV");
28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
29 public static final Attribute HREF = new AttributeImpl ("HREF");
30 public static final Attribute SRC = new AttributeImpl ("SRC");
31 public static final Attribute REL = new AttributeImpl ("REL");
32 public static final Attribute WIDTH = new AttributeImpl ("WIDTH");
33 public static final Attribute SIZE = new AttributeImpl ("SIZE");
34 public static final Attribute BORDER = new AttributeImpl ("BORDER");
35 public static final Attribute CELLPADDING = new AttributeImpl ("CELLPADDING");
36 public static final Attribute CELLSPACING = new AttributeImpl ("CELLSPACING");
37 public static final Attribute ALIGN = new AttributeImpl ("ALIGN");
38 public static final Attribute COLSPAN = new AttributeImpl ("COLSPAN");
51 Attribute () {}
56 private static final class AttributeImpl extends Attribute