KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lobobrowser > html > domimpl > HTMLAppletElementImpl


1 package org.lobobrowser.html.domimpl;
2
3 import org.w3c.dom.html.HTMLAppletElement;
4
5 public class HTMLAppletElementImpl extends HTMLAbstractUIElement implements
6         HTMLAppletElement {
7     public HTMLAppletElementImpl(String JavaDoc name) {
8         super(name);
9     }
10
11     public String JavaDoc getAlign() {
12         return this.getAttribute("align");
13     }
14
15     public String JavaDoc getAlt() {
16         return this.getAttribute("alt");
17     }
18
19     public String JavaDoc getArchive() {
20         return this.getAttribute("archive");
21     }
22
23     public String JavaDoc getCode() {
24         return this.getAttribute("code");
25     }
26
27     public String JavaDoc getCodeBase() {
28         return this.getAttribute("codebase");
29     }
30
31     public String JavaDoc getHeight() {
32         return this.getAttribute("height");
33     }
34
35     public String JavaDoc getHspace() {
36         return this.getAttribute("hspace");
37     }
38
39     public String JavaDoc getName() {
40         return this.getAttribute("name");
41     }
42
43     public String JavaDoc getObject() {
44         return this.getAttribute("object");
45     }
46
47     public String JavaDoc getVspace() {
48         return this.getAttribute("vspace");
49     }
50
51     public String JavaDoc getWidth() {
52         return this.getAttribute("width");
53     }
54
55     public void setAlign(String JavaDoc align) {
56         this.setAttribute("align", align);
57     }
58
59     public void setAlt(String JavaDoc alt) {
60         this.setAttribute("alt", alt);
61     }
62
63     public void setArchive(String JavaDoc archive) {
64         this.setAttribute("archive", archive);
65     }
66
67     public void setCode(String JavaDoc code) {
68         this.setAttribute("code", code);
69     }
70
71     public void setCodeBase(String JavaDoc codeBase) {
72         this.setAttribute("codebase", codeBase);
73     }
74
75     public void setHeight(String JavaDoc height) {
76         this.setAttribute("height", height);
77     }
78
79     public void setHspace(String JavaDoc hspace) {
80         this.setAttribute("hspace", hspace);
81     }
82
83     public void setName(String JavaDoc name) {
84         this.setAttribute("name", name);
85     }
86
87     public void setObject(String JavaDoc object) {
88         this.setAttribute("object", object);
89     }
90
91     public void setVspace(String JavaDoc vspace) {
92         this.setAttribute("vspace", vspace);
93     }
94
95     public void setWidth(String JavaDoc width) {
96         this.setAttribute("width", width);
97     }
98 }
99
Popular Tags