FileDocCategorySizeDatePackage
HTMLHRElementImpl.javaAPI DocJava SE 5 API4123Fri Aug 26 14:55:26 BST 2005com.sun.org.apache.html.internal.dom

HTMLHRElementImpl

public class HTMLHRElementImpl extends HTMLElementImpl implements HTMLHRElement
version
$Revision: 1.6 $ $Date: 2003/05/08 20:13:09 $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLHRElement
see
com.sun.org.apache.xerces.internal.dom.ElementImpl

Fields Summary
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 );