public interface

WMLElement

implements Element
org.apache.wml.WMLElement
Known Indirect Subclasses

Class Overview

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

All WML Elements are derived from this class that contains two core attributes defined in the DTD.

Summary

[Expand]
Inherited Constants
From interface org.w3c.dom.Node
Public Methods
abstract String getClassName()
abstract String getId()
abstract void setClassName(String newValue)
The 'class' attribute of a element that affiliates an elements with one or more elements.
abstract void setId(String newValue)
The element's identifier which is unique in a single deck.
[Expand]
Inherited Methods
From interface org.w3c.dom.Element
From interface org.w3c.dom.Node

Public Methods

public abstract String getClassName ()

public abstract String getId ()

public abstract void setClassName (String newValue)

The 'class' attribute of a element that affiliates an elements with one or more elements. (Section 8.9, WAP WML Version 16-Jun-1999)

public abstract void setId (String newValue)

The element's identifier which is unique in a single deck. (Section 8.9, WAP WML Version 16-Jun-1999)