telephonetype.java

来自「电子地图服务器,搭建自己的地图服务」· Java 代码 · 共 89 行

JAVA
89
字号
/**
 * <copyright>
 * </copyright>
 *
 * $Id: TelephoneType.java 7522 2007-09-12 22:00:10Z saul.farber $
 */
package net.opengis.ows;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Telephone Type</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * Telephone numbers for contacting the responsible individual or organization.
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link net.opengis.ows.TelephoneType#getVoice <em>Voice</em>}</li>
 *   <li>{@link net.opengis.ows.TelephoneType#getFacsimile <em>Facsimile</em>}</li>
 * </ul>
 * </p>
 *
 * @see net.opengis.ows.OwsPackage#getTelephoneType()
 * @model extendedMetaData="name='TelephoneType' kind='elementOnly'"
 * @generated
 */
public interface TelephoneType extends EObject {
	/**
     * Returns the value of the '<em><b>Voice</b></em>' attribute.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     * Telephone number by which individuals can speak to the responsible organization or individual.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Voice</em>' attribute.
     * @see #setVoice(String)
     * @see net.opengis.ows.OwsPackage#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.ows.TelephoneType#getVoice <em>Voice</em>}' attribute.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Voice</em>' attribute.
     * @see #getVoice()
     * @generated
     */
	void setVoice(String value);

	/**
     * Returns the value of the '<em><b>Facsimile</b></em>' attribute.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     * Telephone number of a facsimile machine for the responsible
     * organization or individual.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Facsimile</em>' attribute.
     * @see #setFacsimile(String)
     * @see net.opengis.ows.OwsPackage#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.ows.TelephoneType#getFacsimile <em>Facsimile</em>}' attribute.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Facsimile</em>' attribute.
     * @see #getFacsimile()
     * @generated
     */
	void setFacsimile(String value);

} // TelephoneType

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?