01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: FeaturesNotLockedType.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: import org.eclipse.emf.ecore.util.FeatureMap;
13:
14: /**
15: * <!-- begin-user-doc -->
16: * A representation of the model object '<em><b>Features Not Locked Type</b></em>'.
17: * <!-- end-user-doc -->
18: *
19: * <p>
20: * The following features are supported:
21: * <ul>
22: * <li>{@link net.opengis.wfs.FeaturesNotLockedType#getGroup <em>Group</em>}</li>
23: * <li>{@link net.opengis.wfs.FeaturesNotLockedType#getFeatureId <em>Feature Id</em>}</li>
24: * </ul>
25: * </p>
26: *
27: * @see net.opengis.wfs.WfsPackage#getFeaturesNotLockedType()
28: * @model extendedMetaData="name='FeaturesNotLockedType' kind='elementOnly'"
29: * @generated
30: */
31: public interface FeaturesNotLockedType extends EObject {
32: /**
33: * Returns the value of the '<em><b>Group</b></em>' attribute list.
34: * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
35: * <!-- begin-user-doc -->
36: * <p>
37: * If the meaning of the '<em>Group</em>' attribute list isn't clear,
38: * there really should be more of a description here...
39: * </p>
40: * <!-- end-user-doc -->
41: * @return the value of the '<em>Group</em>' attribute list.
42: * @see net.opengis.wfs.WfsPackage#getFeaturesNotLockedType_Group()
43: * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
44: * extendedMetaData="kind='group' name='group:0'"
45: * @generated
46: */
47: FeatureMap getGroup();
48:
49: /**
50: * Returns the value of the '<em><b>Feature Id</b></em>' attribute list.
51: * The list contents are of type {@link java.lang.Object}.
52: * <!-- begin-user-doc -->
53: * <p>
54: * If the meaning of the '<em>Feature Id</em>' attribute list isn't clear,
55: * there really should be more of a description here...
56: * </p>
57: * <!-- end-user-doc -->
58: * @return the value of the '<em>Feature Id</em>' attribute list.
59: * @see net.opengis.wfs.WFSPackage#getFeaturesNotLockedType_FeatureId()
60: * @model type="org.opengis.filter.identity.FeatureId"
61: */
62: EList getFeatureId();
63:
64: } // FeaturesNotLockedType
|