You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by kb...@informatica.com on 2000/07/11 05:52:46 UTC

Rearrange DOM_Nodes

Since the DOM Tree currently does not have validation semantics (adhering to
a DTD), I need to rearrange the nodes in the tree to adhere to the DTD. I
cannot do this at the time of insertion.
Are there any API to changes the links among the siblings.
	Store (Product+, Employee+)

	DOM Tree
		Store
	P1 E1 E2 E3 P2 P3 E4

	
	After rearrange
		Store
	P1 P2 P3 E1 E2 E3 E4

Kiran