1 57 package org.enhydra.apache.html.dom; 58 59 60 import org.w3c.dom.html.HTMLAppletElement; 61 62 63 69 public class HTMLAppletElementImpl 70 extends HTMLElementImpl 71 implements HTMLAppletElement 72 { 73 74 75 public String getAlign() 76 { 77 return getAttribute( "align" ); 78 } 79 80 81 public void setAlign( String align ) 82 { 83 setAttribute( "align", align ); 84 } 85 86 87 public String getAlt() 88 { 89 return getAttribute( "alt" ); 90 } 91 92 93 public void setAlt( String alt ) 94 { 95 setAttribute( "alt", alt ); 96 } 97 98 99 public String getArchive() 100 { 101 return getAttribute( "archive" ); 102 } 103 104 105 public void setArchive( String archive ) 106 { 107 setAttribute( "archive", archive ); 108 } 109 110 111 public String getCode() 112 { 113 return getAttribute( "code" ); 114 } 115 116 117 public void setCode( String code ) 118 { 119 setAttribute( "code", code ); 120 } 121 122 123 public String getCodeBase() 124 { 125 return getAttribute( "codebase" ); 126 } 127 128 129 public void setCodeBase( String codeBase ) 130 { 131 setAttribute( "codebase", codeBase ); 132 } 133 134 135 public String getHeight() 136 { 137 return getAttribute( "height" ); 138 } 139 140 141 public void setHeight( String height ) 142 { 143 setAttribute( "height", height ); 144 } 145 146 147 public String getHspace() 148 { 149 return getAttribute( "height" ); 150 } 151 152 153 public void setHspace( String height ) 154 { 155 setAttribute( "height", height ); 156 } 157 158 159 public String getName() 160 { 161 return getAttribute( "name" ); 162 } 163 164 165 public void setName( String name ) 166 { 167 setAttribute( "name", name ); 168 } 169 170 171 public String getObject() 172 { 173 return getAttribute( "object" ); 174 } 175 176 177 public void setObject( String object ) 178 { 179 setAttribute( "object", object ); 180 } 181 182 183 public String getVspace() 184 { 185 return getAttribute( "vspace" ); 186 } 187 188 189 public void setVspace( String vspace ) 190 { 191 setAttribute( "vspace", vspace ); 192 } 193 194 195 public String getWidth() 196 { 197 return getAttribute( "width" ); 198 } 199 200 201 public void setWidth( String width ) 202 { 203 setAttribute( "width", width ); 204 } 205 206 207 212 public HTMLAppletElementImpl( HTMLDocumentImpl owner, String name ) 213 { 214 super( owner, name ); 215 } 216 217 } 218 219 | Popular Tags |