Java class for address complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="address">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="zip" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="nr" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
|