diff options
Diffstat (limited to 'tests/org.eclipse.jet.tests/data/library.xml')
-rw-r--r-- | tests/org.eclipse.jet.tests/data/library.xml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/org.eclipse.jet.tests/data/library.xml b/tests/org.eclipse.jet.tests/data/library.xml deleted file mode 100644 index 12e1c14..0000000 --- a/tests/org.eclipse.jet.tests/data/library.xml +++ /dev/null @@ -1,25 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<beans:root xmlns:beans="http://www.example.org/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.example.org/beans beans.xsd "> - <project name="test.beans"> - <beanModel basePackage="org.example" name="Library"> - <bean name="Library"> - <attribute kind="FIELD" name="name" type="String" name-with_hyphen="hello"/> - <attribute kind="FIELD" name="yearFounded" type="int"/> - <attribute kind="DERIVED" name="yearsOpen" type="int"/> - <attribute kind="LIST" name="books" type="Book"/> - <attribute kind="LIST" name="authors" type="Author"/> - </bean> - <bean name="Book"> - <attribute kind="FIELD" name="title" type="String"/> - <attribute kind="FIELD" name="pages" type="int"/> - <attribute kind="LIST" name="authors" type="Author"/> - </bean> - <bean name="Author"> - <attribute kind="FIELD" name="name" type="String"> - <doc>doc for Author.name</doc> - </attribute> - <attribute kind="LIST" name="books" type="Book"/> - </bean> - </beanModel> - </project> -</beans:root> |