HTMLLegendElementImplpublic class HTMLLegendElementImpl extends HTMLElementImpl implements HTMLLegendElement
Constructors Summary |
---|
public HTMLLegendElementImpl(HTMLDocumentImpl owner, String name)Constructor requires owner document.
super( owner, name );
|
Methods Summary |
---|
public java.lang.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 java.lang.String | getAlign()
return getAttribute( "align" );
| public void | setAccessKey(java.lang.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 | setAlign(java.lang.String align)
setAttribute( "align", align );
|
|