Home
DevNet
XML

 

Druckversion
Path ->

  
 
Search

 

Contents
XML
News
CMarkup
EDOM
FAQ
Links

 

 Title0-Deselected

 

 Title0-Selected
 Title1-Deselected
 Title1-Selected
   Title2-Deselected
   Title2-Selected

Encapsulated Document Object Model
An informal recommendation to the development community
Updated April 3, 2002

EDOM is the key to simple XML processing. With EDOM you can avoid the complexities if DOM, SAX, DTD, Schema and XSL for many uses of XML. The methods of this one simple document object allow you to cut through to the core functionality of XML files and strings.

Modification

boolean RemoveElem()
boolean RemoveNode()
boolean RemoveChildElem()
boolean SetData( string data [, int cdata] )
boolean SetChildData( string data [, int cdata] )
boolean SetAttrib( string attribname, string value )
boolean SetChildAttrib( string attribname, string value )
boolean RemoveAttrib( string attribname )
boolean RemoveChildAttrib( string attribname )
boolean FindSetData( string pathname, string data [, int cdata] )

These methods are detailed in the sections below.