| com.google.gwt.xml.client.Attr
All known Subclasses: com.google.gwt.xml.client.impl.AttrImpl,
Attr | public interface Attr extends Node(Code) | | Attr objects represent key-value pairs of attributes on
Element objects. Attr objects are immutable.
|
Method Summary | |
public String | getName() This method retrieves the name. | public boolean | getSpecified() This method determines whether the value of this Attr was
specified here, or as a default value in a DTD. | public String | getValue() This method retrieves the value. |
getName | public String getName()(Code) | | This method retrieves the name.
the name of this Attr |
getSpecified | public boolean getSpecified()(Code) | | This method determines whether the value of this Attr was
specified here, or as a default value in a DTD.
true if the value of this Attr was specified locally. |
getValue | public String getValue()(Code) | | This method retrieves the value.
the value of this Attr |
|
|