/** * * * * $Id$ */ package net.opengis.wfs20; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Execution Status Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getExecutionStatusType() * @model extendedMetaData="name='ExecutionStatusType' kind='empty'" * @generated */ public interface ExecutionStatusType extends EObject { /** * Returns the value of the 'Status' attribute. * The default value is "OK". * *

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

* * @return the value of the 'Status' attribute. * @see #isSetStatus() * @see #unsetStatus() * @see #setStatus(String) * @see net.opengis.wfs20.Wfs20Package#getExecutionStatusType_Status() * @model default="OK" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='status'" * @generated */ String getStatus(); /** * Sets the value of the '{@link net.opengis.wfs20.ExecutionStatusType#getStatus Status}' attribute. * * * @param value the new value of the 'Status' attribute. * @see #isSetStatus() * @see #unsetStatus() * @see #getStatus() * @generated */ void setStatus(String value); /** * Unsets the value of the '{@link net.opengis.wfs20.ExecutionStatusType#getStatus Status}' attribute. * * * @see #isSetStatus() * @see #getStatus() * @see #setStatus(String) * @generated */ void unsetStatus(); /** * Returns whether the value of the '{@link net.opengis.wfs20.ExecutionStatusType#getStatus Status}' attribute is set. * * * @return whether the value of the 'Status' attribute is set. * @see #unsetStatus() * @see #getStatus() * @see #setStatus(String) * @generated */ boolean isSetStatus(); } // ExecutionStatusType