FileDocCategorySizeDatePackage
WMLInputElementImpl.javaAPI DocApache Xerces 3.0.13587Fri Sep 14 20:33:52 BST 2007org.apache.wml.dom

WMLInputElementImpl

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

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


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

        return getAttribute("class");
    
public booleangetEmptyOk()

        return getAttribute("emptyok", false);
    
public java.lang.StringgetFormat()

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

        return getAttribute("id");
    
public intgetMaxLength()

        return getAttribute("maxlength", 0);
    
public java.lang.StringgetName()

        return getAttribute("name");
    
public intgetSize()

        return getAttribute("size", 0);
    
public intgetTabIndex()

        return getAttribute("tabindex", 0);
    
public java.lang.StringgetTitle()

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

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

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

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

        setAttribute("class", newValue);
    
public voidsetEmptyOk(boolean newValue)

        setAttribute("emptyok", newValue);
    
public voidsetFormat(java.lang.String newValue)

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

        setAttribute("id", newValue);
    
public voidsetMaxLength(int newValue)

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

        setAttribute("name", newValue);
    
public voidsetSize(int newValue)

        setAttribute("size", newValue);
    
public voidsetTabIndex(int newValue)

        setAttribute("tabindex", newValue);
    
public voidsetTitle(java.lang.String newValue)

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

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

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

        setAttribute("xml:lang", newValue);