FileDocCategorySizeDatePackage
WMLDoElementImpl.javaAPI DocApache Xerces 3.0.12635Fri Sep 14 20:33:54 BST 2007org.apache.wml.dom

WMLDoElementImpl

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

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

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

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

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

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

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

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

        return getAttribute("type");
    
public java.lang.StringgetXmlLang()

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

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

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

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

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

        setAttribute("optional", newValue);
    
public voidsetType(java.lang.String newValue)

        setAttribute("type", newValue);
    
public voidsetXmlLang(java.lang.String newValue)

        setAttribute("xml:lang", newValue);