Update of /cvsroot/bprocessor/model/src/etc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9759/src/etc
Modified Files:
classification.xsd
Log Message:
Maded the readin of classification xml and made classificationType be only a container holding a list of parameters. Made all classes using classificationType reflect that. Now Classification only know of its possible ClassificationTypes and Space know which one is chosen
Index: classification.xsd
===================================================================
RCS file: /cvsroot/bprocessor/model/src/etc/classification.xsd,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** classification.xsd 25 Jun 2007 09:02:45 -0000 1.4
--- classification.xsd 26 Jun 2007 10:56:55 -0000 1.5
***************
*** 19,22 ****
--- 19,23 ----
<xsd:element name="attributes" type="MapElementType" maxOccurs="unbounded" minOccurs="0"/>
</xsd:sequence>
+ <xsd:attribute name="id" type="xsd:long" use="required"/>
<xsd:attribute name="index" type="xsd:int" use="required"/>
<xsd:attribute name="name" type="xsd:string" use="required"/>
***************
*** 28,33 ****
<xsd:sequence>
<xsd:element ref="cns:XMLClassification" maxOccurs="unbounded" minOccurs="0"/>
- <xsd:element ref="cns:XMLSpecificType" maxOccurs="1" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:string" use="required"/>
<xsd:attribute name="name" type="xsd:string" use="required"/>
--- 29,34 ----
<xsd:sequence>
<xsd:element ref="cns:XMLClassification" maxOccurs="unbounded" minOccurs="0"/>
</xsd:sequence>
+ <xsd:attribute name="typeId" type="xsd:long" use="required"/>
<xsd:attribute name="id" type="xsd:string" use="required"/>
<xsd:attribute name="name" type="xsd:string" use="required"/>
***************
*** 39,43 ****
<xsd:complexType>
<xsd:sequence>
! <xsd:element ref="cns:XMLClassification" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
--- 40,45 ----
<xsd:complexType>
<xsd:sequence>
! <xsd:element ref="cns:XMLClassification" maxOccurs="2" minOccurs="2"/>
! <xsd:element ref="cns:XMLSpecificType" maxOccurs="1" minOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
|