/** * * * * $Id$ */ package net.opengis.wfs20; import javax.xml.namespace.QName; import net.opengis.fes20.FilterType; import org.eclipse.emf.common.util.EList; import org.opengis.filter.Filter; /** * * A representation of the model object 'Update Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getUpdateType() * @model extendedMetaData="name='UpdateType' kind='elementOnly'" * @generated */ public interface UpdateType extends AbstractTransactionActionType { /** * Returns the value of the 'Property' containment reference list. * The list contents are of type {@link net.opengis.wfs20.PropertyType}. * *

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

* * @return the value of the 'Property' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getUpdateType_Property() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Property' namespace='##targetNamespace'" * @generated */ EList getProperty(); /** * 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#getUpdateType_Filter() * @model */ Filter getFilter(); /** * Sets the value of the '{@link net.opengis.wfs20.UpdateType#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#getUpdateType_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.UpdateType#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.UpdateType#getInputFormat Input Format}' attribute. * * * @see #isSetInputFormat() * @see #getInputFormat() * @see #setInputFormat(String) * @generated */ void unsetInputFormat(); /** * Returns whether the value of the '{@link net.opengis.wfs20.UpdateType#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#getUpdateType_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.UpdateType#getSrsName Srs Name}' attribute. * * * @param value the new value of the 'Srs Name' attribute. * @see #getSrsName() * @generated */ void setSrsName(String value); /** * Returns the value of the 'Type Name' attribute. * *

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

* * @return the value of the 'Type Name' attribute. * @see #setTypeName(QName) * @see net.opengis.wfs20.Wfs20Package#getUpdateType_TypeName() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" required="true" * extendedMetaData="kind='attribute' name='typeName'" * @generated */ QName getTypeName(); /** * Sets the value of the '{@link net.opengis.wfs20.UpdateType#getTypeName Type Name}' attribute. * * * @param value the new value of the 'Type Name' attribute. * @see #getTypeName() * @generated */ void setTypeName(QName value); } // UpdateType