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

HTMLStyleElementImpl

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

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

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public booleangetDisabled()

        return getBinary( "disabled" );
    
public java.lang.StringgetMedia()

        return getAttribute( "media" );
    
public java.lang.StringgetType()

        return getAttribute( "type" );
    
public voidsetDisabled(boolean disabled)

        setAttribute( "disabled", disabled );
    
public voidsetMedia(java.lang.String media)

        setAttribute( "media", media );
    
public voidsetType(java.lang.String type)

        setAttribute( "type", type );