/** * * * * $Id$ */ package net.opengis.fes20; import javax.xml.datatype.XMLGregorianCalendar; /** * * A representation of the model object 'Resource Id Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getResourceIdType() * @model extendedMetaData="name='ResourceIdType' kind='empty'" * @generated */ public interface ResourceIdType extends AbstractIdType { /** * Returns the value of the 'End Date' attribute. * *

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

* * @return the value of the 'End Date' attribute. * @see #setEndDate(XMLGregorianCalendar) * @see net.opengis.fes20.Fes20Package#getResourceIdType_EndDate() * @model dataType="org.eclipse.emf.ecore.xml.type.DateTime" * extendedMetaData="kind='attribute' name='endDate'" * @generated */ XMLGregorianCalendar getEndDate(); /** * Sets the value of the '{@link net.opengis.fes20.ResourceIdType#getEndDate End Date}' attribute. * * * @param value the new value of the 'End Date' attribute. * @see #getEndDate() * @generated */ void setEndDate(XMLGregorianCalendar value); /** * Returns the value of the 'Previous Rid' attribute. * *

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

* * @return the value of the 'Previous Rid' attribute. * @see #setPreviousRid(String) * @see net.opengis.fes20.Fes20Package#getResourceIdType_PreviousRid() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='previousRid'" * @generated */ String getPreviousRid(); /** * Sets the value of the '{@link net.opengis.fes20.ResourceIdType#getPreviousRid Previous Rid}' attribute. * * * @param value the new value of the 'Previous Rid' attribute. * @see #getPreviousRid() * @generated */ void setPreviousRid(String value); /** * Returns the value of the 'Rid' attribute. * *

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

* * @return the value of the 'Rid' attribute. * @see #setRid(String) * @see net.opengis.fes20.Fes20Package#getResourceIdType_Rid() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='rid'" * @generated */ String getRid(); /** * Sets the value of the '{@link net.opengis.fes20.ResourceIdType#getRid Rid}' attribute. * * * @param value the new value of the 'Rid' attribute. * @see #getRid() * @generated */ void setRid(String value); /** * Returns the value of the 'Start Date' attribute. * *

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

* * @return the value of the 'Start Date' attribute. * @see #setStartDate(XMLGregorianCalendar) * @see net.opengis.fes20.Fes20Package#getResourceIdType_StartDate() * @model dataType="org.eclipse.emf.ecore.xml.type.DateTime" * extendedMetaData="kind='attribute' name='startDate'" * @generated */ XMLGregorianCalendar getStartDate(); /** * Sets the value of the '{@link net.opengis.fes20.ResourceIdType#getStartDate Start Date}' attribute. * * * @param value the new value of the 'Start Date' attribute. * @see #getStartDate() * @generated */ void setStartDate(XMLGregorianCalendar value); /** * 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(Object) * @see net.opengis.fes20.Fes20Package#getResourceIdType_Version() * @model dataType="net.opengis.fes20.VersionType" * extendedMetaData="kind='attribute' name='version'" * @generated */ Object getVersion(); /** * Sets the value of the '{@link net.opengis.fes20.ResourceIdType#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #getVersion() * @generated */ void setVersion(Object value); } // ResourceIdType