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

WMLInputElementImpl

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

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