View Javadoc

1   package sharin.doc.builder.xhtml1;
2   
3   public class AElem extends GenericCommonElem<AElem> {
4   
5       public AElem(Object... nodes) {
6           super("a", nodes);
7       }
8   
9       public AElem accesskey(Object value) {
10          return attr("accesskey", value);
11      }
12  
13      public AElem charset(Object value) {
14          return attr("charset", value);
15      }
16  
17      public AElem coords(Object value) {
18          return attr("coords", value);
19      }
20  
21      public AElem href(Object value) {
22          return attr("href", value);
23      }
24  
25      public AElem hreflang(Object value) {
26          return attr("hreflang", value);
27      }
28  
29      public AElem name(Object value) {
30          return attr("name", value);
31      }
32  
33      public AElem onblur(Object value) {
34          return attr("onblur", value);
35      }
36  
37      public AElem onfocus(Object value) {
38          return attr("onfocus", value);
39      }
40  
41      public AElem rel(Object value) {
42          return attr("rel", value);
43      }
44  
45      public AElem rev(Object value) {
46          return attr("rev", value);
47      }
48  
49      public AElem shape(Object value) {
50          return attr("shape", value);
51      }
52  
53      public AElem shapeCircle() {
54          return shape("circle");
55      }
56  
57      public AElem shapeDefault() {
58          return shape("default");
59      }
60  
61      public AElem shapePoly() {
62          return shape("poly");
63      }
64  
65      public AElem shapeRect() {
66          return shape("rect");
67      }
68  
69      public AElem tabindex(Object value) {
70          return attr("tabindex", value);
71      }
72  
73      public AElem target(Object value) {
74          return attr("target", value);
75      }
76  
77      public AElem type(Object value) {
78          return attr("type", value);
79      }
80  }