/** * * * * $Id$ */ package net.opengis.wfs; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Feature Type List Type'. * * * * * A list of feature types available from this server. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getFeatureTypeListType() * @model extendedMetaData="name='FeatureTypeListType' kind='elementOnly'" * @generated */ public interface FeatureTypeListType extends EObject { /** * Returns the value of the 'Operations' containment reference. * *

* If the meaning of the 'Operations' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Operations' containment reference. * @see #setOperations(OperationsType) * @see net.opengis.wfs.WfsPackage#getFeatureTypeListType_Operations() * @model containment="true" * extendedMetaData="kind='element' name='Operations' namespace='##targetNamespace'" * @generated */ OperationsType getOperations(); /** * Sets the value of the '{@link net.opengis.wfs.FeatureTypeListType#getOperations Operations}' containment reference. * * * @param value the new value of the 'Operations' containment reference. * @see #getOperations() * @generated */ void setOperations(OperationsType value); /** * Returns the value of the 'Feature Type' containment reference list. * The list contents are of type {@link net.opengis.wfs.FeatureTypeType}. * *

* If the meaning of the 'Feature Type' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Feature Type' containment reference list. * @see net.opengis.wfs.WfsPackage#getFeatureTypeListType_FeatureType() * @model type="net.opengis.wfs.FeatureTypeType" containment="true" required="true" * extendedMetaData="kind='element' name='FeatureType' namespace='##targetNamespace'" * @generated */ EList getFeatureType(); } // FeatureTypeListType