You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Longstrom, Ed" <lo...@AtlasCommerce.com> on 2000/10/19 20:32:16 UTC

API available to list all Entities 1 level under a parent entity

Hello,

Is there and API or a method available to easily return all the Entities 1
level below a parent entity via DOM?

ie:
<?xml version='1.0'?>
<A>
	<B>
		<A>
			<B/>
			<C/>
			<D>
				<Da/>
			</D>
			<E/>
		</A>
	</B>
</A>

I'd like to get all the Entities 1 level under the first <A> which would
return <B>.  Then
maybe all Entities under /A/B/A and get <B>,<C>,<D>,<E>

Thank you,

- Ed