/** * * * * $Id$ */ package net.opengis.wfs20; import java.math.BigInteger; import java.util.Calendar; import javax.xml.datatype.XMLGregorianCalendar; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.geotools.feature.FeatureCollection; /** * * A representation of the model object 'Value Collection Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getValueCollectionType() * @model extendedMetaData="name='ValueCollectionType' kind='elementOnly'" * @generated */ public interface ValueCollectionType extends EObject { /** * Returns the value of the 'Member' containment reference list. * The list contents are of type {@link net.opengis.wfs20.MemberPropertyType}. * *

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

* * @return the value of the 'Member' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getValueCollectionType_Member() * @model * @generated NOT */ EList getMember(); /** * Returns the value of the 'Additional Values' containment reference. * *

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

* * @return the value of the 'Additional Values' containment reference. * @see #setAdditionalValues(AdditionalValuesType) * @see net.opengis.wfs20.Wfs20Package#getValueCollectionType_AdditionalValues() * @model containment="true" * extendedMetaData="kind='element' name='additionalValues' namespace='##targetNamespace'" * @generated */ AdditionalValuesType getAdditionalValues(); /** * Sets the value of the '{@link net.opengis.wfs20.ValueCollectionType#getAdditionalValues Additional Values}' containment reference. * * * @param value the new value of the 'Additional Values' containment reference. * @see #getAdditionalValues() * @generated */ void setAdditionalValues(AdditionalValuesType 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#getValueCollectionType_TruncatedResponse() * @model containment="true" * extendedMetaData="kind='element' name='truncatedResponse' namespace='##targetNamespace'" * @generated */ TruncatedResponseType getTruncatedResponse(); /** * Sets the value of the '{@link net.opengis.wfs20.ValueCollectionType#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 '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#getValueCollectionType_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.ValueCollectionType#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#getValueCollectionType_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.ValueCollectionType#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#getValueCollectionType_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.ValueCollectionType#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#getValueCollectionType_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.ValueCollectionType#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#getValueCollectionType_TimeStamp() * @model * @generated NOT */ Calendar getTimeStamp(); /** * Sets the value of the '{@link net.opengis.wfs20.ValueCollectionType#getTimeStamp Time Stamp}' attribute. * * * @param value the new value of the 'Time Stamp' attribute. * @see #getTimeStamp() * @generated */ void setTimeStamp(Calendar value); } // ValueCollectionType