package org.geotools.wcs.bindings; import org.geotools.wcs.WCS; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/wcs:AddressType. * * <p> * <pre> * <code> * <complexType name="AddressType"> * <annotation> * <documentation>Location of the responsible individual or organization. </documentation> * </annotation> * <sequence> * <element maxOccurs="unbounded" minOccurs="0" * name="deliveryPoint" type="string"> * <annotation> * <documentation>Address line for the location (as described in ISO 11180, Annex A). </documentation> * </annotation> * </element> * <element minOccurs="0" name="city" type="string"> * <annotation> * <documentation>City of the location. </documentation> * </annotation> * </element> * <element minOccurs="0" name="administrativeArea" type="string"> * <annotation> * <documentation>State ot province of the location. </documentation> * </annotation> * </element> * <element minOccurs="0" name="postalCode" type="string"> * <annotation> * <documentation>ZIP or other postal code. </documentation> * </annotation> * </element> * <element minOccurs="0" name="country" type="string"> * <annotation> * <documentation>Country of the physical address. </documentation> * </annotation> * </element> * <element maxOccurs="unbounded" minOccurs="0" * name="electronicMailAddress" type="string"> * <annotation> * <documentation>Address of the electronic mailbox of the responsible organization or individual. </documentation> * </annotation> * </element> * </sequence> * </complexType> * * </code> * </pre> * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/AddressTypeBinding.java $ */ public class AddressTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.AddressType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement and remove call to super return super.parse(instance,node,value); } }