| java.lang.Object net.n3.nanoxml.XMLAttribute
XMLAttribute | class XMLAttribute (Code) | | An attribute in an XML element. This is an internal class.
See Also: net.n3.nanoxml.XMLElement author: Marc De Scheemaecker version: $Name: $, $Revision: 1.17 $ |
XMLAttribute | XMLAttribute(String fullName, String name, String namespace, String value, String type)(Code) | | Creates a new attribute.
Parameters: fullName - the non-null full name Parameters: name - the non-null short name Parameters: namespace - the namespace URI, which may be null Parameters: value - the value of the attribute Parameters: type - the type of the attribute |
getFullName | String getFullName()(Code) | | Returns the full name of the attribute.
|
getName | String getName()(Code) | | Returns the short name of the attribute.
|
getNamespace | String getNamespace()(Code) | | Returns the namespace of the attribute.
|
getType | String getType()(Code) | | Returns the type of the attribute.
Parameters: type - the new type. |
getValue | String getValue()(Code) | | Returns the value of the attribute.
|
setValue | void setValue(String value)(Code) | | Sets the value of the attribute.
Parameters: value - the new value. |
|
|