1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLObjectElement; 19 20 27 public class HTMLObjectElementImpl 28 extends HTMLElementImpl 29 implements HTMLObjectElement, HTMLFormControl 30 { 31 32 private static final long serialVersionUID = 3617014156759479090L; 33 34 public String getCode() 35 { 36 return getAttribute( "code" ); 37 } 38 39 40 public void setCode( String code ) 41 { 42 setAttribute( "code", code ); 43 } 44 45 46 public String getAlign() 47 { 48 return capitalize( getAttribute( "align" ) ); 49 } 50 51 52 public void setAlign( String align ) 53 { 54 setAttribute( "align", align ); 55 } 56 57 58 public String getArchive() 59 { 60 return getAttribute( "archive" ); 61 } 62 63 64 public void setArchive( String archive ) 65 { 66 setAttribute( "archive", archive ); 67 } 68 69 public String getBorder() 70 { 71 return getAttribute( "border" ); 72 } 73 74 75 public void setBorder( String border ) 76 { 77 setAttribute( "border", border ); 78 } 79 80 81 public String getCodeBase() 82 { 83 return getAttribute( "codebase" ); 84 } 85 86 87 public void setCodeBase( String codeBase ) 88 { 89 setAttribute( "codebase", codeBase ); 90 } 91 92 93 public String getCodeType() 94 { 95 return getAttribute( "codetype" ); 96 } 97 98 99 public void setCodeType( String codeType ) 100 { 101 setAttribute( "codetype", codeType ); 102 } 103 104 105 public String getData() 106 { 107 return getAttribute( "data" ); 108 } 109 110 111 public void setData( String data ) 112 { 113 setAttribute( "data", data ); 114 } 115 116 117 public boolean getDeclare() 118 { 119 return getBinary( "declare" ); 120 } 121 122 123 public void setDeclare( boolean declare ) 124 { 125 setAttribute( "declare", declare ); 126 } 127 128 129 public String getHeight() 130 { 131 return getAttribute( "height" ); 132 } 133 134 135 public void setHeight( String height ) 136 { 137 setAttribute( "height", height ); 138 } 139 140 141 public String getHspace() 142 { 143 return getAttribute( "hspace" ); 144 } 145 146 147 public void setHspace( String hspace ) 148 { 149 setAttribute( "hspace", hspace ); 150 } 151 152 public String getName() 153 { 154 return getAttribute( "name" ); 155 } 156 157 158 public void setName( String name ) 159 { 160 setAttribute( "name", name ); 161 } 162 163 164 public String getStandby() 165 { 166 return getAttribute( "standby" ); 167 } 168 169 170 public void setStandby( String standby ) 171 { 172 setAttribute( "standby", standby ); 173 } 174 175 public int getTabIndex() 176 { 177 try 178 { 179 return Integer.parseInt( getAttribute( "tabindex" ) ); 180 } 181 catch ( NumberFormatException except ) 182 { 183 return 0; 184 } 185 } 186 187 188 public void setTabIndex( int tabIndex ) 189 { 190 setAttribute( "tabindex", String.valueOf( tabIndex ) ); 191 } 192 193 194 public String getType() 195 { 196 return getAttribute( "type" ); 197 } 198 199 200 public void setType( String type ) 201 { 202 setAttribute( "type", type ); 203 } 204 205 206 public String getUseMap() 207 { 208 return getAttribute( "useMap" ); 209 } 210 211 212 public void setUseMap( String useMap ) 213 { 214 setAttribute( "useMap", useMap ); 215 } 216 217 218 public String getVspace() 219 { 220 return getAttribute( "vspace" ); 221 } 222 223 224 public void setVspace( String vspace ) 225 { 226 setAttribute( "vspace", vspace ); 227 } 228 229 230 public String getWidth() 231 { 232 return getAttribute( "width" ); 233 } 234 235 236 public void setWidth( String width ) 237 { 238 setAttribute( "width", width ); 239 } 240 241 242 243 248 public HTMLObjectElementImpl( HTMLDocumentImpl owner, String name ) 249 { 250 super( owner, name ); 251 } 252 253 254 } 255 256 | Popular Tags |