Package com.bc.ceres.binding.dom
Interface DomElement
-
- All Superinterfaces:
ConfigurationElementBase<DomElement>
- All Known Implementing Classes:
DefaultDomElement,XppDomElement
public interface DomElement extends ConfigurationElementBase<DomElement>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChild(DomElement childElement)DomElementcreateChild(String name)DomElementgetChild(int index)intgetChildCount()voidsetAttribute(String name, String value)voidsetParent(DomElement parent)voidsetValue(String value)StringtoXml()-
Methods inherited from interface com.bc.ceres.core.runtime.ConfigurationElementBase
getAttribute, getAttributeNames, getChild, getChildren, getChildren, getName, getParent, getValue
-
-
-
-
Method Detail
-
setParent
void setParent(DomElement parent)
-
getChildCount
int getChildCount()
-
getChild
DomElement getChild(int index)
-
createChild
DomElement createChild(String name)
-
addChild
void addChild(DomElement childElement)
-
setValue
void setValue(String value)
-
toXml
String toXml()
-
-