FileDocCategorySizeDatePackage
WMLMetaElementImpl.javaAPI DocApache Xerces 3.0.12655Fri Sep 14 20:33:56 BST 2007org.apache.wml.dom

WMLMetaElementImpl

public class WMLMetaElementImpl extends WMLElementImpl implements WMLMetaElement
xerces.internal
version
$Id: WMLMetaElementImpl.java 447257 2006-09-18 05:40:07Z mrglavas $
author
David Li

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public WMLMetaElementImpl(WMLDocumentImpl owner, String tagName)


          
        super( owner, tagName);
    
Methods Summary
public java.lang.StringgetClassName()

        return getAttribute("class");
    
public java.lang.StringgetContent()

        return getAttribute("content");
    
public booleangetForua()

        return getAttribute("forua", false);
    
public java.lang.StringgetHttpEquiv()

        return getAttribute("http-equiv");
    
public java.lang.StringgetId()

        return getAttribute("id");
    
public java.lang.StringgetName()

        return getAttribute("name");
    
public java.lang.StringgetScheme()

        return getAttribute("scheme");
    
public voidsetClassName(java.lang.String newValue)

        setAttribute("class", newValue);
    
public voidsetContent(java.lang.String newValue)

        setAttribute("content", newValue);
    
public voidsetForua(boolean newValue)

        setAttribute("forua", newValue);
    
public voidsetHttpEquiv(java.lang.String newValue)

        setAttribute("http-equiv", newValue);
    
public voidsetId(java.lang.String newValue)

        setAttribute("id", newValue);
    
public voidsetName(java.lang.String newValue)

        setAttribute("name", newValue);
    
public voidsetScheme(java.lang.String newValue)

        setAttribute("scheme", newValue);