01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: InsertResultsType.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>Insert Results Type</b></em>'.
15: * <!-- end-user-doc -->
16: *
17: * <!-- begin-model-doc -->
18: *
19: * Reports the list of identifiers of all features created
20: * by a transaction request. New features are created using
21: * the Insert action and the list of idetifiers must be
22: * presented in the same order as the Insert actions were
23: * encountered in the transaction request. Features may
24: * optionally be correlated with identifiers using the
25: * handle attribute (if it was specified on the Insert
26: * element).
27: * <!-- end-model-doc -->
28: *
29: * <p>
30: * The following features are supported:
31: * <ul>
32: * <li>{@link net.opengis.wfs.InsertResultsType#getFeature <em>Feature</em>}</li>
33: * </ul>
34: * </p>
35: *
36: * @see net.opengis.wfs.WfsPackage#getInsertResultsType()
37: * @model extendedMetaData="name='InsertResultsType' kind='elementOnly'"
38: * @generated
39: */
40: public interface InsertResultsType extends EObject {
41: /**
42: * Returns the value of the '<em><b>Feature</b></em>' containment reference list.
43: * The list contents are of type {@link net.opengis.wfs.InsertedFeatureType}.
44: * <!-- begin-user-doc -->
45: * <p>
46: * If the meaning of the '<em>Feature</em>' containment reference list isn't clear,
47: * there really should be more of a description here...
48: * </p>
49: * <!-- end-user-doc -->
50: * @return the value of the '<em>Feature</em>' containment reference list.
51: * @see net.opengis.wfs.WfsPackage#getInsertResultsType_Feature()
52: * @model type="net.opengis.wfs.InsertedFeatureType" containment="true" required="true"
53: * extendedMetaData="kind='element' name='Feature' namespace='##targetNamespace'"
54: * @generated
55: */
56: EList getFeature();
57:
58: } // InsertResultsType
|