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

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getInsertType() * @model extendedMetaData="name='InsertType' kind='elementOnly'" * @generated */ public interface InsertType 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#getInsertType_Any() * @model */ EList getAny(); /** * 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#getInsertType_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.InsertType#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.InsertType#getInputFormat Input Format}' attribute. * * * @see #isSetInputFormat() * @see #getInputFormat() * @see #setInputFormat(String) * @generated */ void unsetInputFormat(); /** * Returns whether the value of the '{@link net.opengis.wfs20.InsertType#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#getInsertType_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.InsertType#getSrsName Srs Name}' attribute. * * * @param value the new value of the 'Srs Name' attribute. * @see #getSrsName() * @generated */ void setSrsName(String value); } // InsertType