FileDocCategorySizeDatePackage
HTMLHRElementImpl.javaAPI DocApache Xerces 3.0.12402Fri Sep 14 20:33:52 BST 2007org.apache.html.dom

HTMLHRElementImpl

public class HTMLHRElementImpl extends HTMLElementImpl implements HTMLHRElement
xerces.internal
version
$Revision: 447255 $ $Date: 2006-09-18 01:36:42 -0400 (Mon, 18 Sep 2006) $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLHRElement
see
org.apache.xerces.dom.ElementImpl

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public HTMLHRElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public java.lang.StringgetAlign()


      
    
        return capitalize( getAttribute( "align" ) );
    
public booleangetNoShade()

        return getBinary( "noshade" );
    
public java.lang.StringgetSize()

        return getAttribute( "size" );
    
public java.lang.StringgetWidth()

        return getAttribute( "width" );
    
public voidsetAlign(java.lang.String align)

        setAttribute( "align", align );
    
public voidsetNoShade(boolean noShade)

        setAttribute( "noshade", noShade );
    
public voidsetSize(java.lang.String size)

        setAttribute( "size", size );
    
public voidsetWidth(java.lang.String width)

        setAttribute( "width", width );