public interface AbstractXML
Modifier and Type | Method and Description |
---|---|
AbstractXML[] |
getChildren()
Should provide all of this element's children.
|
java.lang.String |
getContent()
Should provide the content this XML element.
|
java.lang.String |
getName()
Should provide this XML element's full name.
|
java.lang.String |
getString(java.lang.String attribute)
Should provide the value of the given attribute of the XML element.
|
java.lang.String[] |
listAttributes()
Should provide a list of all the XML element's attributes as an array.
|
java.lang.String[] listAttributes()
java.lang.String getString(java.lang.String attribute)
attribute
- Attribute for which a value is to be reported.java.lang.String getContent()
java.lang.String getName()
AbstractXML[] getChildren()