1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 50 public class HtmlObject extends ClickableElement { 51 52 53 public static final String TAG_NAME = "object"; 54 55 61 public HtmlObject( final HtmlPage page, final Map attributes ) { 62 super(page, attributes); 63 } 64 65 68 public String getTagName() { 69 return TAG_NAME; 70 } 71 72 80 public final String getDeclareAttribute() { 81 return getAttributeValue("declare"); 82 } 83 84 85 93 public final String getClassIdAttribute() { 94 return getAttributeValue("classid"); 95 } 96 97 98 106 public final String getCodebaseAttribute() { 107 return getAttributeValue("codebase"); 108 } 109 110 111 119 public final String getDataAttribute() { 120 return getAttributeValue("data"); 121 } 122 123 124 132 public final String getTypeAttribute() { 133 return getAttributeValue("type"); 134 } 135 136 137 145 public final String getCodeTypeAttribute() { 146 return getAttributeValue("codetype"); 147 } 148 149 150 158 public final String getArchiveAttribute() { 159 return getAttributeValue("archive"); 160 } 161 162 163 171 public final String getStandbyAttribute() { 172 return getAttributeValue("standby"); 173 } 174 175 176 184 public final String getHeightAttribute() { 185 return getAttributeValue("height"); 186 } 187 188 189 197 public final String getWidthAttribute() { 198 return getAttributeValue("width"); 199 } 200 201 202 210 public final String getUseMapAttribute() { 211 return getAttributeValue("usemap"); 212 } 213 214 215 223 public final String getNameAttribute() { 224 return getAttributeValue("name"); 225 } 226 227 228 236 public final String getTabIndexAttribute() { 237 return getAttributeValue("tabindex"); 238 } 239 240 241 249 public final String getAlignAttribute() { 250 return getAttributeValue("align"); 251 } 252 253 254 262 public final String getBorderAttribute() { 263 return getAttributeValue("border"); 264 } 265 266 267 275 public final String getHspaceAttribute() { 276 return getAttributeValue("hspace"); 277 } 278 279 280 288 public final String getVspaceAttribute() { 289 return getAttributeValue("vspace"); 290 } 291 } 292 | Popular Tags |