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 voidaddAttribute(Attribute attribute)voidappendChild(Element element)AttributegetAttribute(int index)AttributegetAttribute(java.lang.String key)intgetAttributeCount()java.lang.StringgetAttributeValue(java.lang.String key)ElementsgetChildElements()java.lang.StringgetLocalName()
-
-
-
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)
-
-