/** * * * * $Id$ */ package net.opengis.ows10; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Telephone Type'. * * * * Telephone numbers for contacting the responsible individual or organization. * * *

* The following features are supported: *

*

* * @see net.opengis.ows10.Ows10Package#getTelephoneType() * @model extendedMetaData="name='TelephoneType' kind='elementOnly'" * @generated */ public interface TelephoneType extends EObject { /** * Returns the value of the 'Voice' attribute. * * * * Telephone number by which individuals can speak to the responsible organization or individual. * * @return the value of the 'Voice' attribute. * @see #setVoice(String) * @see net.opengis.ows10.Ows10Package#getTelephoneType_Voice() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='Voice' namespace='##targetNamespace'" * @generated */ String getVoice(); /** * Sets the value of the '{@link net.opengis.ows10.TelephoneType#getVoice Voice}' attribute. * * * @param value the new value of the 'Voice' attribute. * @see #getVoice() * @generated */ void setVoice(String value); /** * Returns the value of the 'Facsimile' attribute. * * * * Telephone number of a facsimile machine for the responsible * organization or individual. * * @return the value of the 'Facsimile' attribute. * @see #setFacsimile(String) * @see net.opengis.ows10.Ows10Package#getTelephoneType_Facsimile() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='Facsimile' namespace='##targetNamespace'" * @generated */ String getFacsimile(); /** * Sets the value of the '{@link net.opengis.ows10.TelephoneType#getFacsimile Facsimile}' attribute. * * * @param value the new value of the 'Facsimile' attribute. * @see #getFacsimile() * @generated */ void setFacsimile(String value); } // TelephoneType