- From: Henry S. Thompson <ht@inf.ed.ac.uk>
- Date: Mon, 13 Sep 2004 15:07:52 +0100
- To: Jochen Wiedmann <jochen.wiedmann@softwareag.com>
- Cc: xmlschema-dev@w3.org, Mik Lernout <mik@futurestreet.org>
Jochen Wiedmann <jochen.wiedmann@softwareag.com> writes:
> <complexType mixed="true">
> <attribute name="test" type="xs:string"/>
> </complexType>
>
> We are currently discussing, how to evaluate this, with two possible
> solutions:
>
> - Take it as it is, a complex type with complex content and
> XsContentType "mixed".
This is correct.
> - Take it as a complex type with simple content and base xs:string.
This will cause trouble, as it cannot be extended as follows (call
your type above 'base':
<complexType mixed="true">
<complexContent>
<extension base="base">
<sequence>
<element ref="elt"/>
</sequence>
</extension>
</complexContent>
</complexType>
but this is in fact OK.
ht
--
Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
Half-time member of W3C Team
2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
Fax: (44) 131 650-4587, e-mail: ht@inf.ed.ac.uk
URL: http://www.ltg.ed.ac.uk/~ht/
[mail really from me _always_ has this .sig -- mail without it is forged spam]
Received on Monday, 13 September 2004 14:08:35 UTC