/** * * * * $Id$ */ package net.opengis.wfsv; import javax.xml.datatype.XMLGregorianCalendar; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Abstract Versioned Feature Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfsv.WfsvPackage#getAbstractVersionedFeatureType() * @model abstract="true" * extendedMetaData="name='AbstractVersionedFeatureType' kind='elementOnly'" * @generated */ public interface AbstractVersionedFeatureType extends EObject { /** * 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#getAbstractVersionedFeatureType_Version() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='version' namespace='##targetNamespace'" * @generated */ String getVersion(); /** * Sets the value of the '{@link net.opengis.wfsv.AbstractVersionedFeatureType#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the 'Author' attribute. * *

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

* * @return the value of the 'Author' attribute. * @see #setAuthor(String) * @see net.opengis.wfsv.WfsvPackage#getAbstractVersionedFeatureType_Author() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='author' namespace='##targetNamespace'" * @generated */ String getAuthor(); /** * Sets the value of the '{@link net.opengis.wfsv.AbstractVersionedFeatureType#getAuthor Author}' attribute. * * * @param value the new value of the 'Author' attribute. * @see #getAuthor() * @generated */ void setAuthor(String value); /** * Returns the value of the 'Date' attribute. * *

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

* * @return the value of the 'Date' attribute. * @see #setDate(XMLGregorianCalendar) * @see net.opengis.wfsv.WfsvPackage#getAbstractVersionedFeatureType_Date() * @model dataType="org.eclipse.emf.ecore.xml.type.DateTime" required="true" * extendedMetaData="kind='element' name='date' namespace='##targetNamespace'" * @generated */ XMLGregorianCalendar getDate(); /** * Sets the value of the '{@link net.opengis.wfsv.AbstractVersionedFeatureType#getDate Date}' attribute. * * * @param value the new value of the 'Date' attribute. * @see #getDate() * @generated */ void setDate(XMLGregorianCalendar value); /** * Returns the value of the 'Message' attribute. * *

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

* * @return the value of the 'Message' attribute. * @see #setMessage(String) * @see net.opengis.wfsv.WfsvPackage#getAbstractVersionedFeatureType_Message() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='message' namespace='##targetNamespace'" * @generated */ String getMessage(); /** * Sets the value of the '{@link net.opengis.wfsv.AbstractVersionedFeatureType#getMessage Message}' attribute. * * * @param value the new value of the 'Message' attribute. * @see #getMessage() * @generated */ void setMessage(String value); } // AbstractVersionedFeatureType