Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 125b5cceb4c74a784844d1bda4458168a3f6bc64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.eclipse.org/emf/teneo/samples/emf/annotations/entity"
	xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore"
	xmlns:lib="http://www.eclipse.org/emf/teneo/samples/emf/annotations/entity"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
	<xsd:complexType name="Book">
		<xsd:annotation>
			<xsd:appinfo source="teneo.jpa">@Entity(name="Boek")</xsd:appinfo>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="title" type="xsd:string" />
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="Writer">
		<xsd:annotation>
			<xsd:appinfo source="teneo.jpa">@Entity(name="Schrijver")</xsd:appinfo>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="name" type="xsd:string" />
		</xsd:sequence>
	</xsd:complexType>
</xsd:schema>

Back to the top