/** * * * * $Id$ */ package net.opengis.fes20; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Sort Property Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getSortPropertyType() * @model extendedMetaData="name='SortPropertyType' kind='elementOnly'" * @generated */ public interface SortPropertyType extends EObject { /** * Returns the value of the 'Value Reference' attribute. * *

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

* * @return the value of the 'Value Reference' attribute. * @see #setValueReference(String) * @see net.opengis.fes20.Fes20Package#getSortPropertyType_ValueReference() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='ValueReference' namespace='##targetNamespace'" * @generated */ String getValueReference(); /** * Sets the value of the '{@link net.opengis.fes20.SortPropertyType#getValueReference Value Reference}' attribute. * * * @param value the new value of the 'Value Reference' attribute. * @see #getValueReference() * @generated */ void setValueReference(String value); /** * Returns the value of the 'Sort Order' attribute. * The literals are from the enumeration {@link net.opengis.fes20.SortOrderType}. * *

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

* * @return the value of the 'Sort Order' attribute. * @see net.opengis.fes20.SortOrderType * @see #isSetSortOrder() * @see #unsetSortOrder() * @see #setSortOrder(SortOrderType) * @see net.opengis.fes20.Fes20Package#getSortPropertyType_SortOrder() * @model unsettable="true" * extendedMetaData="kind='element' name='SortOrder' namespace='##targetNamespace'" * @generated */ SortOrderType getSortOrder(); /** * Sets the value of the '{@link net.opengis.fes20.SortPropertyType#getSortOrder Sort Order}' attribute. * * * @param value the new value of the 'Sort Order' attribute. * @see net.opengis.fes20.SortOrderType * @see #isSetSortOrder() * @see #unsetSortOrder() * @see #getSortOrder() * @generated */ void setSortOrder(SortOrderType value); /** * Unsets the value of the '{@link net.opengis.fes20.SortPropertyType#getSortOrder Sort Order}' attribute. * * * @see #isSetSortOrder() * @see #getSortOrder() * @see #setSortOrder(SortOrderType) * @generated */ void unsetSortOrder(); /** * Returns whether the value of the '{@link net.opengis.fes20.SortPropertyType#getSortOrder Sort Order}' attribute is set. * * * @return whether the value of the 'Sort Order' attribute is set. * @see #unsetSortOrder() * @see #getSortOrder() * @see #setSortOrder(SortOrderType) * @generated */ boolean isSetSortOrder(); } // SortPropertyType