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 void
addChild(DomElement childElement)
DomElement
createChild(String name)
DomElement
getChild(int index)
int
getChildCount()
void
setAttribute(String name, String value)
void
setParent(DomElement parent)
void
setValue(String value)
String
toXml()
-
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()
-
-