JAXB
lienie Wstęp Przykład Typy danych
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3 xmlns:jxb="http://java.sun.com/xml/ns/jaxb" jxb:version="2.O">
5 <xsd:element name="Greetings" type="GreetingListType"/>
6 <xsd:complexType nam"GreetingListType">
7 <xsd:sequence>
8 <xsd:element name="Greetlng" type="GreetingType" maxOccurs="unbounded"/
10 </xsd:complexType>
12 <xsd:complexType name="GreetingType">
13 <xsd:sequence>
15 </xsd:sequence>
16 <xsd:attribute name="language" type="xsd:language"/>
17 </xsd:complexType>