Show
Ignore:
Timestamp:
10/18/07 23:48:56 (1 year ago)
Author:
mikey
Message:

added constructor cdata example and test

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/xml/test-constructor.xml

    r39 r109  
    11<configuration> 
    2         <color id="color" red="100" green="25" blue="10"/> 
    3         <color id="color-no-atts"/> 
    4          
    5         <!-- Use child tags for the constructor --> 
    6         <color2> 
    7                 <red>111</red> 
    8                 <green>222</green> 
    9                 <blue>333</blue> 
    10         </color2> 
     2  <color id="color" red="100" green="25" blue="10"/> 
     3  <color id="color-no-atts"/> 
     4 
     5  <!-- Use child tags for the constructor --> 
     6  <color2> 
     7    <red>111</red> 
     8    <green>222</green> 
     9    <blue>333</blue> 
     10  </color2> 
     11 
     12  <!-- Use cdata tags for the constructor --> 
     13  <color3>#999999</color3> 
    1114</configuration>