FileDocCategorySizeDatePackage
WMLDoElementImpl.javaAPI DocJava SE 5 API4195Fri Aug 26 14:55:30 BST 2005com.sun.org.apache.wml.internal.dom

WMLDoElementImpl

public class WMLDoElementImpl extends WMLElementImpl implements WMLDoElement
version
$Id: WMLDoElementImpl.java,v 1.1 2000/04/23 18:07:47 david Exp $
author
David Li

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