/** * * * * $Id$ */ package net.opengis.wfs20; import java.math.BigInteger; import java.util.Calendar; import javax.xml.datatype.XMLGregorianCalendar; /** * * A representation of the model object 'Feature Collection Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType() * @model extendedMetaData="name='FeatureCollectionType' kind='elementOnly'" * @generated */ public interface FeatureCollectionType extends SimpleFeatureCollectionType { /** * Returns the value of the 'Additional Objects' containment reference. * *

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

* * @return the value of the 'Additional Objects' containment reference. * @see #setAdditionalObjects(AdditionalObjectsType) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_AdditionalObjects() * @model containment="true" * extendedMetaData="kind='element' name='additionalObjects' namespace='##targetNamespace'" * @generated */ AdditionalObjectsType getAdditionalObjects(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getAdditionalObjects Additional Objects}' containment reference. * * * @param value the new value of the 'Additional Objects' containment reference. * @see #getAdditionalObjects() * @generated */ void setAdditionalObjects(AdditionalObjectsType value); /** * Returns the value of the 'Truncated Response' containment reference. * *

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

* * @return the value of the 'Truncated Response' containment reference. * @see #setTruncatedResponse(TruncatedResponseType) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_TruncatedResponse() * @model containment="true" * extendedMetaData="kind='element' name='truncatedResponse' namespace='##targetNamespace'" * @generated */ TruncatedResponseType getTruncatedResponse(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getTruncatedResponse Truncated Response}' containment reference. * * * @param value the new value of the 'Truncated Response' containment reference. * @see #getTruncatedResponse() * @generated */ void setTruncatedResponse(TruncatedResponseType value); /** * Returns the value of the 'Lock Id' attribute. * *

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

* * @return the value of the 'Lock Id' attribute. * @see #setLockId(String) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_LockId() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='lockId'" * @generated */ String getLockId(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getLockId Lock Id}' attribute. * * * @param value the new value of the 'Lock Id' attribute. * @see #getLockId() * @generated */ void setLockId(String value); /** * Returns the value of the 'Next' attribute. * *

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

* * @return the value of the 'Next' attribute. * @see #setNext(String) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_Next() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='next'" * @generated */ String getNext(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getNext Next}' attribute. * * * @param value the new value of the 'Next' attribute. * @see #getNext() * @generated */ void setNext(String value); /** * Returns the value of the 'Number Matched' attribute. * *

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

* * @return the value of the 'Number Matched' attribute. * @see #setNumberMatched(Object) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_NumberMatched() * @model dataType="net.opengis.wfs20.NonNegativeIntegerOrUnknown" required="true" * extendedMetaData="kind='attribute' name='numberMatched'" * @generated */ Object getNumberMatched(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getNumberMatched Number Matched}' attribute. * * * @param value the new value of the 'Number Matched' attribute. * @see #getNumberMatched() * @generated */ void setNumberMatched(Object value); /** * Returns the value of the 'Number Returned' attribute. * *

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

* * @return the value of the 'Number Returned' attribute. * @see #setNumberReturned(BigInteger) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_NumberReturned() * @model dataType="org.eclipse.emf.ecore.xml.type.NonNegativeInteger" required="true" * extendedMetaData="kind='attribute' name='numberReturned'" * @generated */ BigInteger getNumberReturned(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getNumberReturned Number Returned}' attribute. * * * @param value the new value of the 'Number Returned' attribute. * @see #getNumberReturned() * @generated */ void setNumberReturned(BigInteger value); /** * Returns the value of the 'Previous' attribute. * *

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

* * @return the value of the 'Previous' attribute. * @see #setPrevious(String) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_Previous() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='previous'" * @generated */ String getPrevious(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getPrevious Previous}' attribute. * * * @param value the new value of the 'Previous' attribute. * @see #getPrevious() * @generated */ void setPrevious(String value); /** * Returns the value of the 'Time Stamp' attribute. * *

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

* * @return the value of the 'Time Stamp' attribute. * @see #setTimeStamp(XMLGregorianCalendar) * @see net.opengis.wfs20.Wfs20Package#getFeatureCollectionType_TimeStamp() * @model */ Calendar getTimeStamp(); /** * Sets the value of the '{@link net.opengis.wfs20.FeatureCollectionType#getTimeStamp Time Stamp}' attribute. * * * @param value the new value of the 'Time Stamp' attribute. * @see #getTimeStamp() * @generated */ void setTimeStamp(Calendar value); } // FeatureCollectionType