Advertisement
Guest User

Foo XML

a guest
Jun 3rd, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.68 KB | None | 0 0
  1.  <XMLObj>
  2.     <ObjFoo id="fooObj.id" someStr="fooObj.someStr">
  3.         <!-- Split the fooObj into groups based on the groupId, each group will have one ObjBars tag-->
  4.         <ObjBars groupId="fooObj.subBar.groupId[0]">
  5.             <!-- All ObjBar elements in this group have the same groupId -->
  6.             <ObjBar id="fooObj.subBar.id[0]" />
  7.             <ObjBar id="fooObj.subBar.id[1]" />
  8.         </ObjBars>
  9.         <ObjBars groupId="fooObj.subBar.groupId[1]">
  10.             <!-- All ObjBar elements in this group have the same groupId -->
  11.             <ObjBar id="fooObj.subBar.id[0]" />
  12.             <ObjBar id="fooObj.subBar.id[1]" />
  13.         </ObjBars>
  14.     </ObjFoo>
  15. </XMLObj>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement