01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: OperationsType.java 7522 2007-09-12 22:00:10Z saul.farber $
06: */package net.opengis.wfs;
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>Operations Type</b></em>'.
15: * <!-- end-user-doc -->
16: *
17: * <p>
18: * The following features are supported:
19: * <ul>
20: * <li>{@link net.opengis.wfs.OperationsType#getOperation <em>Operation</em>}</li>
21: * </ul>
22: * </p>
23: *
24: * @see net.opengis.wfs.WfsPackage#getOperationsType()
25: * @model extendedMetaData="name='OperationsType' kind='elementOnly'"
26: * @generated
27: */
28: public interface OperationsType extends EObject {
29: /**
30: * Returns the value of the '<em><b>Operation</b></em>' attribute list.
31: * The list contents are of type {@link net.opengis.wfs.OperationType}.
32: * The literals are from the enumeration {@link net.opengis.wfs.OperationType}.
33: * <!-- begin-user-doc -->
34: * <p>
35: * If the meaning of the '<em>Operation</em>' attribute list isn't clear,
36: * there really should be more of a description here...
37: * </p>
38: * <!-- end-user-doc -->
39: * @return the value of the '<em>Operation</em>' attribute list.
40: * @see net.opengis.wfs.OperationType
41: * @see net.opengis.wfs.WfsPackage#getOperationsType_Operation()
42: * @model default="Insert" unique="false" dataType="net.opengis.wfs.OperationType" required="true"
43: * extendedMetaData="kind='element' name='Operation' namespace='##targetNamespace'"
44: * @generated
45: */
46: EList getOperation();
47:
48: } // OperationsType
|