01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: SectionsType.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>Sections Type</b></em>'.
17: * <!-- end-user-doc -->
18: *
19: * <!-- begin-model-doc -->
20: * Unordered list of zero or more names of requested sections in complete service metadata document. Each Section value shall contain an allowed section name as specified by each OWS specification. See Sections parameter 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.SectionsType#getSection <em>Section</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see net.opengis.ows.OwsPackage#getSectionsType()
31: * @model extendedMetaData="name='SectionsType' kind='elementOnly'"
32: * @generated
33: */
34: public interface SectionsType extends EObject {
35: /**
36: * Returns the value of the '<em><b>Section</b></em>' attribute.
37: * <!-- begin-user-doc -->
38: * <p>
39: * If the meaning of the '<em>Section</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>Section</em>' attribute.
44: * @see #setSection(String)
45: * @see net.opengis.ows.OwsPackage#getSectionsType_Section()
46: * @model type="java.lang.String"
47: */
48: EList getSection();
49:
50: } // SectionsType
|