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:ResponsiblePartyType. * * <p> * <pre> * <code> * <complexType name="ResponsiblePartyType"> * <annotation> * <documentation>Identification of, and means of communication with, person(s) and organizations associated with the server. </documentation> * </annotation> * <sequence> * <choice> * <sequence> * <element name="individualName" type="string"> * <annotation> * <documentation>Name of the responsible person-surname, given name, title separated by a delimiter. </documentation> * </annotation> * </element> * <element minOccurs="0" name="organisationName" type="string"/> * </sequence> * <element name="organisationName" type="string"> * <annotation> * <documentation>Name of the responsible organizationt. </documentation> * </annotation> * </element> * </choice> * <element minOccurs="0" name="positionName" type="string"> * <annotation> * <documentation>Role or position of the responsible person. </documentation> * </annotation> * </element> * <element minOccurs="0" name="contactInfo" type="wcs:ContactType"> * <annotation> * <documentation>Address of the responsible party. </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/ResponsiblePartyTypeBinding.java $ */ public class ResponsiblePartyTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.ResponsiblePartyType; } /** * <!-- 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); } }