
<!-- This sample XML file uses the "new" XMLBeans format -->
  
<Player>
    <Properties>
    <Number>12</Number>
    <HighSchool>Eaton</HighSchool>
  
    <!--
      == Notice also that comments in XML files look
      == just like comments in HTML files.
      -->

    <Name>
      <First>Jonas</First>
      <Last>Grumby</Last>
    </Name>
  
    <Stats>
          <Year>1997</Year>
          <AtBats>69</AtBats>
          <Runs>31</Runs>
          <Hits><!-- this property is in hex -->0x1e</Hits>
          <HomeRuns>2</HomeRuns>
          <RunsBattedIn>15</RunsBattedIn>
          <!-- Strikeouts are encrypted -->
          <Strikeouts>rw</Strikeouts>
    </Stats>

    <Grades>
        <GRADE VALUE="A">Wood shop</GRADE>
        <GRADE VALUE="C">Senior English Literature Seminar</GRADE>
        <GRADE VALUE="A">Phys Ed</GRADE>
        <GRADE VALUE="B">Papier Mache</GRADE>
        <GRADE VALUE="C">Current Events</GRADE>
    </Grades>
    </Properties>

    <EventSets>
    </EventSets>
</Player>
  
