[Bprocessor-commit] model/src/etc bprocessor.xsd,1.20,1.21
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-10-14 23:42:47
|
Update of /cvsroot/bprocessor/model/src/etc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11288/src/etc Modified Files: bprocessor.xsd Log Message: Made bug fixes and now persistence of modellors partially work Index: bprocessor.xsd =================================================================== RCS file: /cvsroot/bprocessor/model/src/etc/bprocessor.xsd,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** bprocessor.xsd 13 Oct 2006 15:54:59 -0000 1.20 --- bprocessor.xsd 14 Oct 2006 23:42:43 -0000 1.21 *************** *** 25,32 **** <xsd:complexType name="EntityType"> <xsd:complexContent> ! <xsd:extension base="Types"> ! <xsd:attribute name="id" type="xsd:long" use="required"/> ! <xsd:attribute name="progid" type="xsd:long" use="optional"/> ! </xsd:extension> </xsd:complexContent> </xsd:complexType> --- 25,32 ---- <xsd:complexType name="EntityType"> <xsd:complexContent> ! <xsd:extension base="Types"> ! <xsd:attribute name="id" type="xsd:long" use="required"/> ! <xsd:attribute name="progid" type="xsd:long" use="optional"/> ! </xsd:extension> </xsd:complexContent> </xsd:complexType> *************** *** 170,173 **** --- 170,183 ---- </xsd:complexType> + <xsd:complexType name="RefType"> + <xsd:complexContent> + <xsd:extension base="Types"> + <xsd:sequence> + <xsd:element name="ref" type="xsd:long" maxOccurs="1" minOccurs="1"/> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + <xsd:complexType name="IntegerType"> <xsd:complexContent> *************** *** 180,183 **** --- 190,203 ---- </xsd:complexType> + <xsd:complexType name="DoubleType"> + <xsd:complexContent> + <xsd:extension base="Types"> + <xsd:sequence> + <xsd:element name="double" type="xsd:double" maxOccurs="1" minOccurs="1"/> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + <xsd:complexType name="StringType"> <xsd:complexContent> |