FileDocCategorySizeDatePackage
WMLSelectElement.javaAPI DocApache Xerces 3.0.13145Fri Sep 14 20:33:52 BST 2007org.apache.wml

WMLSelectElement

public interface WMLSelectElement implements WMLElement

The interface is modeled after DOM1 Spec for HTML from W3C. The DTD used in this DOM model is from http://www.wapforum.org/DTD/wml_1.1.xml

'select' element lets user pick from a list of options. (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

version
$Id: WMLSelectElement.java 447258 2006-09-18 05:41:23Z mrglavas $
author
David Li

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetIName()

public java.lang.StringgetIValue()

public booleangetMultiple()

public java.lang.StringgetName()

public intgetTabIndex()

public java.lang.StringgetTitle()

public java.lang.StringgetValue()

public java.lang.StringgetXmlLang()

public voidsetIName(java.lang.String newValue)
'iname' specifies name of variable to be set with the index result of selection. (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

public voidsetIValue(java.lang.String newValue)
'ivalue' specifies the default of the variable 'iname'

public voidsetMultiple(boolean newValue)
'multiple' indicates whether a list accept multiple selection (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

public voidsetName(java.lang.String newValue)
'name' specifies the name of variable to be set. (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

public voidsetTabIndex(int newValue)
'tabindex' specifies the tabbing position of the element (Section 11.6.1, WAP WML Version 16-Jun-1999)

public voidsetTitle(java.lang.String newValue)
'title' specifies a title for this element (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

public voidsetValue(java.lang.String newValue)
'value' specifics the default value of the variable of 'name' (Section 11.6.2.1, WAP WML Version 16-Jun-1999)

public voidsetXmlLang(java.lang.String newValue)
'xml:lang' specifics the natural or formal language in which the document is written. (Section 8.8, WAP WML Version 16-Jun-1999)