First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
Sample: MixedContent
Author: Eric Vasilik (ericvas@bea.com)
Last Updated: Oct. 28, 2004
Versions:
xmlbeans-1.0.3
xmlbeans-v2
-----------------------------------------------------------------------------
This samples gives an quick overview of how to use XmlBeans with both the
strongly typed XmlObjects (StatementDocument, Transaction) and with the
XmlCursor.
In the sample, a instance of a statement is iterated over twice --
once using the strongly typed array approach and once with an XmlCursor. When
walking over the array the programmer naivly adds up deposit amounts before
the withdrawal amounts. The end result is a positive balance. When walking
over the array using XmlCursor, the transaction amounts are processed in order
and the end result is a negative balance.
In this situation, the order of the xml elements matters!
To try out this sample:
1. Set XMLBEANS_HOME in your environment
2. Ant must be on your PATH
3. To compile the schemas and sample source, run "ant build"
4. To execute the sample, run "ant run"