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

HTMLBaseFontElementImpl

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

Fields Summary
Constructors Summary
public HTMLBaseFontElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

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

        return capitalize( getAttribute( "color" ) );
    
public java.lang.StringgetFace()

        return capitalize( getAttribute( "face" ) );
    
public java.lang.StringgetSize()

        return getAttribute( "size" );
    
public voidsetColor(java.lang.String color)

        setAttribute( "color", color );
    
public voidsetFace(java.lang.String face)

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

        setAttribute( "size", size );