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:TelephoneType. * * <p> * <pre> * <code> * <complexType name="TelephoneType"> * <annotation> * <documentation>Telephone numbers for contacting the responsible individual or organization. </documentation> * </annotation> * <sequence> * <element maxOccurs="unbounded" minOccurs="0" name="voice" type="string"> * <annotation> * <documentation>Telephone number by which individuals can speak to the responsible organization or individual. </documentation> * </annotation> * </element> * <element maxOccurs="unbounded" minOccurs="0" name="facsimile" type="string"> * <annotation> * <documentation>Telephone number of a facsimile machine for the responsibleorganization 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/TelephoneTypeBinding.java $ */ public class TelephoneTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.TelephoneType; } /** * <!-- 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); } }