01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: AcceptVersionsType.java 6226 2007-02-27 22:03:44Z jdeolive $
06: */package net.opengis.ows;
07:
08: import java.util.List;
09:
10: import org.eclipse.emf.common.util.EList;
11:
12: import org.eclipse.emf.ecore.EObject;
13:
14: /**
15: * <!-- begin-user-doc -->
16: * A representation of the model object '<em><b>Accept Versions Type</b></em>'.
17: * <!-- end-user-doc -->
18: *
19: * <!-- begin-model-doc -->
20: * Prioritized sequence of one or more specification versions accepted by client, with preferred versions listed first. See Version negotiation subclause for more information.
21: * <!-- end-model-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * <ul>
26: * <li>{@link net.opengis.ows.AcceptVersionsType#getVersion <em>Version</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see net.opengis.ows.OwsPackage#getAcceptVersionsType()
31: * @model extendedMetaData="name='AcceptVersionsType' kind='elementOnly'"
32: * @generated
33: */
34: public interface AcceptVersionsType extends EObject {
35: /**
36: * Returns the value of the '<em><b>Version</b></em>' attribute.
37: * <!-- begin-user-doc -->
38: * <p>
39: * If the meaning of the '<em>Version</em>' attribute list isn't clear,
40: * there really should be more of a description here...
41: * </p>
42: * <!-- end-user-doc -->
43: * @return the value of the '<em>Version</em>' attribute.
44: * @see #setVersion(String)
45: * @see net.opengis.ows.OwsPackage#getAcceptVersionsType_Version()
46: * @model type="java.lang.String"
47: */
48: EList getVersion();
49:
50: } // AcceptVersionsType
|