diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 01:39:19 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 01:39:19 +0100 |
commit | 84f0004cdf45f6fbad6461676897aa27f03cbb93 (patch) | |
tree | acb15536b40d7389c3c65df1567084bb57da416e /testdata/xmlparser/generic.oxm | |
parent | 495e2de57e587450e9532c7fe4ae0c2bfb196e6c (diff) |
Removed dependency between "Project" model class and parser/resources. This reduces coupling and was stupid beforehand.
Diffstat (limited to 'testdata/xmlparser/generic.oxm')
-rw-r--r-- | testdata/xmlparser/generic.oxm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/testdata/xmlparser/generic.oxm b/testdata/xmlparser/generic.oxm index 2dbd72b..56a8745 100644 --- a/testdata/xmlparser/generic.oxm +++ b/testdata/xmlparser/generic.oxm @@ -3,25 +3,18 @@ <head> <typesystem name="color"> <types> - <struct name="rgb"> + <struct name="rgb"> <!-- Instance 1 --> <field name="r" type="double"/> <field name="g" type="double"/> <field name="b" type="double"/> </struct> - <struct name="rgb"> + <struct name="rgb"> <!-- Instance 2 --> </struct> <struct name="rgba" parent="rgb"> <field name="a" type="double" default="0xf3"/> </struct> </types> </typesystem> - <typesystem name="color2"> - <types> - <struct name="rgba" parent="rgb"> - <field name="a" type="bla" default="0xf3"/> - </struct> - </types> - </typesystem> </head> <body xmlAttr="blub"> <!--<book>Dies ist ein Test></book>--> |