01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: TelephoneType.java 7522 2007-09-12 22:00:10Z saul.farber $
06: */package net.opengis.ows;
07:
08: import org.eclipse.emf.common.util.EList;
09:
10: import org.eclipse.emf.ecore.EObject;
11:
12: /**
13: * <!-- begin-user-doc -->
14: * A representation of the model object '<em><b>Telephone Type</b></em>'.
15: * <!-- end-user-doc -->
16: *
17: * <!-- begin-model-doc -->
18: * Telephone numbers for contacting the responsible individual or organization.
19: * <!-- end-model-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * <ul>
24: * <li>{@link net.opengis.ows.TelephoneType#getVoice <em>Voice</em>}</li>
25: * <li>{@link net.opengis.ows.TelephoneType#getFacsimile <em>Facsimile</em>}</li>
26: * </ul>
27: * </p>
28: *
29: * @see net.opengis.ows.OwsPackage#getTelephoneType()
30: * @model extendedMetaData="name='TelephoneType' kind='elementOnly'"
31: * @generated
32: */
33: public interface TelephoneType extends EObject {
34: /**
35: * Returns the value of the '<em><b>Voice</b></em>' attribute.
36: * <!-- begin-user-doc -->
37: * <!-- end-user-doc -->
38: * <!-- begin-model-doc -->
39: * Telephone number by which individuals can speak to the responsible organization or individual.
40: * <!-- end-model-doc -->
41: * @return the value of the '<em>Voice</em>' attribute.
42: * @see #setVoice(String)
43: * @see net.opengis.ows.OwsPackage#getTelephoneType_Voice()
44: * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
45: * extendedMetaData="kind='element' name='Voice' namespace='##targetNamespace'"
46: * @generated
47: */
48: String getVoice();
49:
50: /**
51: * Sets the value of the '{@link net.opengis.ows.TelephoneType#getVoice <em>Voice</em>}' attribute.
52: * <!-- begin-user-doc -->
53: * <!-- end-user-doc -->
54: * @param value the new value of the '<em>Voice</em>' attribute.
55: * @see #getVoice()
56: * @generated
57: */
58: void setVoice(String value);
59:
60: /**
61: * Returns the value of the '<em><b>Facsimile</b></em>' attribute.
62: * <!-- begin-user-doc -->
63: * <!-- end-user-doc -->
64: * <!-- begin-model-doc -->
65: * Telephone number of a facsimile machine for the responsible
66: * organization or individual.
67: * <!-- end-model-doc -->
68: * @return the value of the '<em>Facsimile</em>' attribute.
69: * @see #setFacsimile(String)
70: * @see net.opengis.ows.OwsPackage#getTelephoneType_Facsimile()
71: * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
72: * extendedMetaData="kind='element' name='Facsimile' namespace='##targetNamespace'"
73: * @generated
74: */
75: String getFacsimile();
76:
77: /**
78: * Sets the value of the '{@link net.opengis.ows.TelephoneType#getFacsimile <em>Facsimile</em>}' attribute.
79: * <!-- begin-user-doc -->
80: * <!-- end-user-doc -->
81: * @param value the new value of the '<em>Facsimile</em>' attribute.
82: * @see #getFacsimile()
83: * @generated
84: */
85: void setFacsimile(String value);
86:
87: } // TelephoneType
|