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 SummaryAll 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.ConfigurationElementBasegetAttribute, getAttributeNames, getChild, getChildren, getChildren, getName, getParent, getValue
 
- 
 
- 
- 
- 
Method Detail- 
setParentvoid setParent(DomElement parent) 
 - 
getChildCountint getChildCount() 
 - 
getChildDomElement getChild(int index) 
 - 
createChildDomElement createChild(String name) 
 - 
addChildvoid addChild(DomElement childElement) 
 - 
setValuevoid setValue(String value) 
 - 
toXmlString toXml() 
 
- 
 
-