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:ContactType. * * <p> * <pre> * <code> * <complexType name="ContactType"> * <annotation> * <documentation>Information required to enable contact with the responsible person and/or organization. </documentation> * </annotation> * <sequence> * <element minOccurs="0" name="phone" type="wcs:TelephoneType"> * <annotation> * <documentation>Telephone numbers at which the organization or individual may becontacted. </documentation> * </annotation> * </element> * <element minOccurs="0" name="address" type="wcs:AddressType"> * <annotation> * <documentation>Physical and email address at which the organization or individualmay be contacted. </documentation> * </annotation> * </element> * <element minOccurs="0" name="onlineResource" type="wcs:OnlineResourceType"> * <annotation> * <documentation>On-line information that can be used to contact the individual ororganization. </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/ContactTypeBinding.java $ */ public class ContactTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.ContactType; } /** * <!-- 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); } }