| Method from org.apache.html.dom.HTMLObjectElementImpl Detail: |
public String getAlign() {
return capitalize( getAttribute( "align" ) );
}
|
public String getArchive() {
return getAttribute( "archive" );
}
|
public String getBorder() {
return getAttribute( "border" );
}
|
public String getCode() {
return getAttribute( "code" );
}
|
public String getCodeBase() {
return getAttribute( "codebase" );
}
|
public String getCodeType() {
return getAttribute( "codetype" );
}
|
public String getData() {
return getAttribute( "data" );
}
|
public boolean getDeclare() {
return getBinary( "declare" );
}
|
public String getHeight() {
return getAttribute( "height" );
}
|
public String getHspace() {
return getAttribute( "hspace" );
}
|
public String getName() {
return getAttribute( "name" );
}
|
public String getStandby() {
return getAttribute( "standby" );
}
|
public int getTabIndex() {
try
{
return Integer.parseInt( getAttribute( "tabindex" ) );
}
catch ( NumberFormatException except )
{
return 0;
}
}
|
public String getType() {
return getAttribute( "type" );
}
|
public String getUseMap() {
return getAttribute( "useMap" );
}
|
public String getVspace() {
return getAttribute( "vspace" );
}
|
public String getWidth() {
return getAttribute( "width" );
}
|
public void setAlign(String align) {
setAttribute( "align", align );
}
|
public void setArchive(String archive) {
setAttribute( "archive", archive );
}
|
public void setBorder(String border) {
setAttribute( "border", border );
}
|
public void setCode(String code) {
setAttribute( "code", code );
}
|
public void setCodeBase(String codeBase) {
setAttribute( "codebase", codeBase );
}
|
public void setCodeType(String codeType) {
setAttribute( "codetype", codeType );
}
|
public void setData(String data) {
setAttribute( "data", data );
}
|
public void setDeclare(boolean declare) {
setAttribute( "declare", declare );
}
|
public void setHeight(String height) {
setAttribute( "height", height );
}
|
public void setHspace(String hspace) {
setAttribute( "hspace", hspace );
}
|
public void setName(String name) {
setAttribute( "name", name );
}
|
public void setStandby(String standby) {
setAttribute( "standby", standby );
}
|
public void setTabIndex(int tabIndex) {
setAttribute( "tabindex", String.valueOf( tabIndex ) );
}
|
public void setType(String type) {
setAttribute( "type", type );
}
|
public void setUseMap(String useMap) {
setAttribute( "useMap", useMap );
}
|
public void setVspace(String vspace) {
setAttribute( "vspace", vspace );
}
|
public void setWidth(String width) {
setAttribute( "width", width );
}
|