/** * * * * $Id$ */ package net.opengis.wfsv; import net.opengis.wfs.FeatureCollectionType; /** * * A representation of the model object 'Versioned Feature Collection Type'. * * * * A collection of versioned features * * *

* The following features are supported: *

*

* * @see net.opengis.wfsv.WfsvPackage#getVersionedFeatureCollectionType() * @model extendedMetaData="name='VersionedFeatureCollectionType' kind='empty'" * @generated */ public interface VersionedFeatureCollectionType extends FeatureCollectionType { /** * Returns the value of the 'Version' attribute. * *

* If the meaning of the 'Version' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Version' attribute. * @see #setVersion(String) * @see net.opengis.wfsv.WfsvPackage#getVersionedFeatureCollectionType_Version() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='version'" * @generated */ String getVersion(); /** * Sets the value of the '{@link net.opengis.wfsv.VersionedFeatureCollectionType#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #getVersion() * @generated */ void setVersion(String value); } // VersionedFeatureCollectionType