Package com.macrofocus.persistence
Interface Element
-
- All Known Implementing Classes:
DefaultElement
,JsonMLElement
,JsonObjectElement
public interface Element
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAttribute(Attribute attribute)
void
appendChild(Element element)
Attribute
getAttribute(int index)
Attribute
getAttribute(java.lang.String key)
int
getAttributeCount()
java.lang.String
getAttributeValue(java.lang.String key)
Elements
getChildElements()
java.lang.String
getLocalName()
-
-
-
Method Detail
-
getLocalName
java.lang.String getLocalName()
-
getAttributeCount
int getAttributeCount()
-
getAttribute
Attribute getAttribute(int index)
-
getAttribute
Attribute getAttribute(java.lang.String key)
-
getChildElements
Elements getChildElements()
-
getAttributeValue
java.lang.String getAttributeValue(java.lang.String key)
-
addAttribute
void addAttribute(Attribute attribute)
-
appendChild
void appendChild(Element element)
-
-