/** * * * * $Id$ */ package net.opengis.wfs20; import javax.xml.namespace.QName; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Value Reference Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getValueReferenceType() * @model extendedMetaData="name='ValueReference_._type' kind='simple'" * @generated */ public interface ValueReferenceType extends EObject { /** * Returns the value of the 'Value' attribute. * *

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

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see net.opengis.wfs20.Wfs20Package#getValueReferenceType_Value() * @model */ QName getValue(); /** * Sets the value of the '{@link net.opengis.wfs20.ValueReferenceType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(QName value); /** * Returns the value of the 'Action' attribute. * The default value is "replace". * The literals are from the enumeration {@link net.opengis.wfs20.UpdateActionType}. * *

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

* * @return the value of the 'Action' attribute. * @see net.opengis.wfs20.UpdateActionType * @see #isSetAction() * @see #unsetAction() * @see #setAction(UpdateActionType) * @see net.opengis.wfs20.Wfs20Package#getValueReferenceType_Action() * @model default="replace" unsettable="true" * extendedMetaData="kind='attribute' name='action'" * @generated */ UpdateActionType getAction(); /** * Sets the value of the '{@link net.opengis.wfs20.ValueReferenceType#getAction Action}' attribute. * * * @param value the new value of the 'Action' attribute. * @see net.opengis.wfs20.UpdateActionType * @see #isSetAction() * @see #unsetAction() * @see #getAction() * @generated */ void setAction(UpdateActionType value); /** * Unsets the value of the '{@link net.opengis.wfs20.ValueReferenceType#getAction Action}' attribute. * * * @see #isSetAction() * @see #getAction() * @see #setAction(UpdateActionType) * @generated */ void unsetAction(); /** * Returns whether the value of the '{@link net.opengis.wfs20.ValueReferenceType#getAction Action}' attribute is set. * * * @return whether the value of the 'Action' attribute is set. * @see #unsetAction() * @see #getAction() * @see #setAction(UpdateActionType) * @generated */ boolean isSetAction(); } // ValueReferenceType