/** * * * * $Id$ */ package net.opengis.wfs20; import net.opengis.fes20.FilterType; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.util.FeatureMap; import org.opengis.filter.Filter; /** * * A representation of the model object 'Replace Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getReplaceType() * @model extendedMetaData="name='ReplaceType' kind='elementOnly'" * @generated */ public interface ReplaceType extends AbstractTransactionActionType { /** * Returns the value of the 'Any' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

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

* * @return the value of the 'Any' attribute list. * @see net.opengis.wfs20.Wfs20Package#getReplaceType_Any() * @model */ EList getAny(); /** * Returns the value of the 'Filter' containment reference. * *

* If the meaning of the 'Filter' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Filter' containment reference. * @see #setFilter(FilterType) * @see net.opengis.wfs20.Wfs20Package#getReplaceType_Filter() * @model */ Filter getFilter(); /** * Sets the value of the '{@link net.opengis.wfs20.ReplaceType#getFilter Filter}' attribute. * * * @param value the new value of the 'Filter' attribute. * @see #getFilter() * @generated */ void setFilter(Filter value); /** * Returns the value of the 'Input Format' attribute. * The default value is "application/gml+xml; version=3.2". * *

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

* * @return the value of the 'Input Format' attribute. * @see #isSetInputFormat() * @see #unsetInputFormat() * @see #setInputFormat(String) * @see net.opengis.wfs20.Wfs20Package#getReplaceType_InputFormat() * @model default="application/gml+xml; version=3.2" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='inputFormat'" * @generated */ String getInputFormat(); /** * Sets the value of the '{@link net.opengis.wfs20.ReplaceType#getInputFormat Input Format}' attribute. * * * @param value the new value of the 'Input Format' attribute. * @see #isSetInputFormat() * @see #unsetInputFormat() * @see #getInputFormat() * @generated */ void setInputFormat(String value); /** * Unsets the value of the '{@link net.opengis.wfs20.ReplaceType#getInputFormat Input Format}' attribute. * * * @see #isSetInputFormat() * @see #getInputFormat() * @see #setInputFormat(String) * @generated */ void unsetInputFormat(); /** * Returns whether the value of the '{@link net.opengis.wfs20.ReplaceType#getInputFormat Input Format}' attribute is set. * * * @return whether the value of the 'Input Format' attribute is set. * @see #unsetInputFormat() * @see #getInputFormat() * @see #setInputFormat(String) * @generated */ boolean isSetInputFormat(); /** * Returns the value of the 'Srs Name' attribute. * *

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

* * @return the value of the 'Srs Name' attribute. * @see #setSrsName(String) * @see net.opengis.wfs20.Wfs20Package#getReplaceType_SrsName() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='srsName'" * @generated */ String getSrsName(); /** * Sets the value of the '{@link net.opengis.wfs20.ReplaceType#getSrsName Srs Name}' attribute. * * * @param value the new value of the 'Srs Name' attribute. * @see #getSrsName() * @generated */ void setSrsName(String value); } // ReplaceType