1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLAppletElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLAppletElement 31 { 32 33 public XHTMLAppletElementImpl (XHTMLDocumentBase owner, String namespaceURI, String tagName) { 34 super( owner, namespaceURI, tagName); 35 } 36 37 public void setId (String newValue) { 38 setAttribute("id", newValue); 39 } 40 41 public String getId () { 42 return getAttribute ("id"); 43 } 44 public void setLang (String newValue) { 45 setAttribute("lang", newValue); 46 } 47 48 public String getLang () { 49 return getAttribute ("lang"); 50 } 51 public void setDir (String newValue) { 52 setAttribute("dir", newValue); 53 } 54 55 public String getDir () { 56 return getAttribute ("dir"); 57 } 58 public void setClassName (String newValue) { 59 setAttribute("class", newValue); 60 } 61 62 public String getClassName () { 63 return getAttribute ("class"); 64 } 65 public void setTitle (String newValue) { 66 setAttribute("title", newValue); 67 } 68 69 public String getTitle () { 70 return getAttribute ("title"); 71 } 72 public void setName (String newValue) { 73 setAttribute("name", newValue); 74 } 75 76 public String getName () { 77 return getAttribute ("name"); 78 } 79 public void setObject (String newValue) { 80 setAttribute("object", newValue); 81 } 82 83 public String getObject () { 84 return getAttribute ("object"); 85 } 86 public void setCodeBase (String newValue) { 87 setAttribute("codebase", newValue); 88 } 89 90 public String getCodeBase () { 91 return getAttribute ("codebase"); 92 } 93 public void setAlign (String newValue) { 94 setAttribute("align", newValue); 95 } 96 97 public String getAlign () { 98 return getAttribute ("align"); 99 } 100 public void setAlt (String newValue) { 101 setAttribute("alt", newValue); 102 } 103 104 public String getAlt () { 105 return getAttribute ("alt"); 106 } 107 public void setArchive (String newValue) { 108 setAttribute("archive", newValue); 109 } 110 111 public String getArchive () { 112 return getAttribute ("archive"); 113 } 114 public void setCode (String newValue) { 115 setAttribute("code", newValue); 116 } 117 118 public String getCode () { 119 return getAttribute ("code"); 120 } 121 public void setHeight (String newValue) { 122 setAttribute("height", newValue); 123 } 124 125 public String getHeight () { 126 return getAttribute ("height"); 127 } 128 public void setHspace (String newValue) { 129 setAttribute("hspace", newValue); 130 } 131 132 public String getHspace () { 133 return getAttribute ("hspace"); 134 } 135 public void setVspace (String newValue) { 136 setAttribute("vspace", newValue); 137 } 138 139 public String getVspace () { 140 return getAttribute ("vspace"); 141 } 142 public void setWidth (String newValue) { 143 setAttribute("width", newValue); 144 } 145 146 public String getWidth () { 147 return getAttribute ("width"); 148 } 149 public void setStyle (String newValue) { 150 setAttribute("style", newValue); 151 } 152 153 public String getStyle () { 154 return getAttribute ("style"); 155 } 156 ; 157 158 159 ; 160 } 161 162 163 | Popular Tags |