01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: VersionedFeatureCollectionType.java 7988 2007-12-12 20:29:15Z aaime $
06: */package net.opengis.wfsv;
07:
08: import net.opengis.wfs.FeatureCollectionType;
09:
10: /**
11: * <!-- begin-user-doc -->
12: * A representation of the model object '<em><b>Versioned Feature Collection Type</b></em>'.
13: * <!-- end-user-doc -->
14: *
15: * <!-- begin-model-doc -->
16: * A collection of versioned features
17: * <!-- end-model-doc -->
18: *
19: * <p>
20: * The following features are supported:
21: * <ul>
22: * <li>{@link net.opengis.wfsv.VersionedFeatureCollectionType#getVersion <em>Version</em>}</li>
23: * </ul>
24: * </p>
25: *
26: * @see net.opengis.wfsv.WfsvPackage#getVersionedFeatureCollectionType()
27: * @model extendedMetaData="name='VersionedFeatureCollectionType' kind='empty'"
28: * @generated
29: */
30: public interface VersionedFeatureCollectionType extends
31: FeatureCollectionType {
32: /**
33: * Returns the value of the '<em><b>Version</b></em>' attribute.
34: * <!-- begin-user-doc -->
35: * <p>
36: * If the meaning of the '<em>Version</em>' attribute isn't clear,
37: * there really should be more of a description here...
38: * </p>
39: * <!-- end-user-doc -->
40: * @return the value of the '<em>Version</em>' attribute.
41: * @see #setVersion(String)
42: * @see net.opengis.wfsv.WfsvPackage#getVersionedFeatureCollectionType_Version()
43: * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true"
44: * extendedMetaData="kind='attribute' name='version'"
45: * @generated
46: */
47: String getVersion();
48:
49: /**
50: * Sets the value of the '{@link net.opengis.wfsv.VersionedFeatureCollectionType#getVersion <em>Version</em>}' attribute.
51: * <!-- begin-user-doc -->
52: * <!-- end-user-doc -->
53: * @param value the new value of the '<em>Version</em>' attribute.
54: * @see #getVersion()
55: * @generated
56: */
57: void setVersion(String value);
58:
59: } // VersionedFeatureCollectionType
|