Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 28th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. xsd: abstract class collection
  2. <Parent>
  3.   <Child1 ... />
  4.   <Child2 ... />
  5.   ...
  6.   <Child1 ... />
  7.   <Child1 ... />
  8. <Parent>
  9.        
  10. <xs:element name="Parent">
  11.   <xsl:complexType>
  12.     <xs:choice minOccurs="0" maxOccurs="unbounded">
  13.       <xs:element name="Child1"/>
  14.       <xs:element name="Child2"/>
  15.     </xs:choice>
  16.   </xs:complexType>
  17. </xs:element>
  18.        
  19. <Parent>
  20.   <Child1 ... />
  21.   <Child2 ... />
  22.   <Child1 ... />
  23.   <Child1 ... />
  24. </Parent>