Home | History | Annotate | Download | only in src
      1 <?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
      2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      3 
      4 <xsd:annotation>
      5   <xsd:documentation>
      6   Schema for JDiff comments.
      7   </xsd:documentation>
      8 </xsd:annotation>
      9 
     10 <xsd:element name="comments" type="commentsType"/>
     11 
     12 <xsd:complexType name="commentsType">
     13   <xsd:sequence>
     14     <xsd:element name="comment" type="commentType" minOccurs='0' maxOccurs='unbounded'/>
     15   </xsd:sequence>
     16   <xsd:attribute name="name" type="xsd:string"/>
     17   <xsd:attribute name="jdversion" type="xsd:string"/>
     18 </xsd:complexType>
     19 
     20 <xsd:complexType name="commentType">
     21   <xsd:sequence>
     22     <xsd:element name="identifier" type="identifierType" minOccurs='1' maxOccurs='unbounded'/>
     23     <xsd:element name="text" type="xsd:string" minOccurs='1' maxOccurs='1'/>
     24   </xsd:sequence>
     25 </xsd:complexType>
     26 
     27 <xsd:complexType name="identifierType">
     28   <xsd:attribute name="id" type="xsd:string"/>
     29 </xsd:complexType>
     30 
     31 </xsd:schema>