| Method from org.apache.html.dom.HTMLAreaElementImpl Detail: |
public String getAccessKey() {
String accessKey;
// Make sure that the access key is a single character.
accessKey = getAttribute( "accesskey" );
if ( accessKey != null && accessKey.length() > 1 )
accessKey = accessKey.substring( 0, 1 );
return accessKey;
}
|
public String getAlt() {
return getAttribute( "alt" );
}
|
public String getCoords() {
return getAttribute( "coords" );
}
|
public String getHref() {
return getAttribute( "href" );
}
|
public boolean getNoHref() {
return getBinary( "href" );
}
|
public String getShape() {
return capitalize( getAttribute( "shape" ) );
}
|
public int getTabIndex() {
return getInteger( getAttribute( "tabindex" ) );
}
|
public String getTarget() {
return getAttribute( "target" );
}
|
public void setAccessKey(String accessKey) {
// Make sure that the access key is a single character.
if ( accessKey != null && accessKey.length() > 1 )
accessKey = accessKey.substring( 0, 1 );
setAttribute( "accesskey", accessKey );
}
|
public void setAlt(String alt) {
setAttribute( "alt", alt );
}
|
public void setCoords(String coords) {
setAttribute( "coords", coords );
}
|
public void setHref(String href) {
setAttribute( "href", href );
}
|
public void setNoHref(boolean noHref) {
setAttribute( "nohref", noHref );
}
|
public void setShape(String shape) {
setAttribute( "shape", shape );
}
|
public void setTabIndex(int tabIndex) {
setAttribute( "tabindex", String.valueOf( tabIndex ) );
}
|
public void setTarget(String target) {
setAttribute( "target", target );
}
|