diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-28 01:07:28 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-28 01:07:28 +0100 |
commit | f330623143d76e56a9bd95e4c1658dd3fcf69ac6 (patch) | |
tree | d32a8d607177bd0f1b0f457887e623dcdb2dc447 /testdata | |
parent | 21a91f26dc1c86fef631d22bf15bbd78414736d0 (diff) |
Parsing a bit more stuff
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/xmlparser/generic.oxm | 30 |
1 files changed, 9 insertions, 21 deletions
diff --git a/testdata/xmlparser/generic.oxm b/testdata/xmlparser/generic.oxm index 56a8745..94f0226 100644 --- a/testdata/xmlparser/generic.oxm +++ b/testdata/xmlparser/generic.oxm @@ -1,23 +1,11 @@ <!--<?xml version="1.0" standalone="yes"?>--> -<document a:bc="b"> - <head> - <typesystem name="color"> - <types> - <struct name="rgb"> <!-- Instance 1 --> - <field name="r" type="double"/> - <field name="g" type="double"/> - <field name="b" type="double"/> - </struct> - <struct name="rgb"> <!-- Instance 2 --> - </struct> - <struct name="rgba" parent="rgb"> - <field name="a" type="double" default="0xf3"/> - </struct> - </types> - </typesystem> - </head> - <body xmlAttr="blub"> - <!--<book>Dies ist ein Test></book>--> - </body> -</document> +<typesystem name="color"> + <types> + <struct name="rgb" parent="rgb"> <!-- Instance 1 --> + <field name="r" type="double"/> + <field name="g" type="double"/> + <field name="b" type="double"/> + </struct> + </types> +</typesystem> |