Interface ExtensionElement
-
public interface ExtensionElementA ExtensionElementExtensionElement is an element that is defined in any namespace except the namespace "app"
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ExtensionAttribute>getAttributes()Get attributesList<ExtensionElement>getElements()Get nested elementsStringgetName()Get the local name of the elementStringgetNamespace()Get the namespaceStringgetPrefix()Get the prefix of the elementStringgetText()Get the text
-
-
-
Method Detail
-
getNamespace
String getNamespace()
Get the namespace- Returns:
- namespace as String
-
getPrefix
String getPrefix()
Get the prefix of the element- Returns:
- prefix as String
-
getName
String getName()
Get the local name of the element- Returns:
- name as String
-
getText
String getText()
Get the text- Returns:
- text as String
-
getElements
List<ExtensionElement> getElements()
Get nested elements- Returns:
- a list of
ExtensionElement
-
getAttributes
List<ExtensionAttribute> getAttributes()
Get attributes- Returns:
- a list of
ExtensionAttribute
-
-