View Javadoc

1   package sharin.doc.builder.xhtml1;
2   
3   public class AppletElem extends GenericCoreElem<AppletElem> {
4   
5       public AppletElem(Object... nodes) {
6           super("applet", nodes);
7       }
8   
9       public AppletElem align(Object value) {
10          return attr("align", value);
11      }
12  
13      public AppletElem alignBottom() {
14          return align("bottom");
15      }
16  
17      public AppletElem alignLeft() {
18          return align("left");
19      }
20  
21      public AppletElem alignMiddle() {
22          return align("middle");
23      }
24  
25      public AppletElem alignRight() {
26          return align("right");
27      }
28  
29      public AppletElem alignTop() {
30          return align("top");
31      }
32  
33      public AppletElem alt(Object value) {
34          return attr("alt", value);
35      }
36  
37      public AppletElem archive(Object value) {
38          return attr("archive", value);
39      }
40  
41      public AppletElem code(Object value) {
42          return attr("code", value);
43      }
44  
45      public AppletElem codebase(Object value) {
46          return attr("codebase", value);
47      }
48  
49      public AppletElem height(Object value) {
50          return attr("height", value);
51      }
52  
53      public AppletElem hspace(Object value) {
54          return attr("hspace", value);
55      }
56  
57      public AppletElem name(Object value) {
58          return attr("name", value);
59      }
60  
61      public AppletElem object(Object value) {
62          return attr("object", value);
63      }
64  
65      public AppletElem vspace(Object value) {
66          return attr("vspace", value);
67      }
68  
69      public AppletElem width(Object value) {
70          return attr("width", value);
71      }
72  }