/** * * * * $Id$ */ package net.opengis.wfs; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Inserted Feature Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getInsertedFeatureType() * @model extendedMetaData="name='InsertedFeatureType' kind='elementOnly'" * @generated */ public interface InsertedFeatureType extends EObject { /** * Returns the value of the 'Feature Id' attribute list. * The list contents are of type {@link java.lang.Object}. * * * * * This is the feature identifier for the newly created * feature. The feature identifier may be generated by * the WFS or provided by the client (depending on the * value of the idgen attribute). In all cases of idgen * values, the feature id must be reported here. * * * @return the value of the 'Feature Id' attribute list. * @see net.opengis.wfs.WFSPackage#getInsertedFeatureType_FeatureId() * @model type="org.opengis.filter.identity.FeatureId" */ EList getFeatureId(); /** * Returns the value of the 'Handle' attribute. * * * * * If the insert element that generated this feature * had a value for the "handle" attribute then a WFS * may report it using this attribute to correlate * the feature created with the action that created it. * * @return the value of the 'Handle' attribute. * @see #setHandle(String) * @see net.opengis.wfs.WfsPackage#getInsertedFeatureType_Handle() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='handle'" * @generated */ String getHandle(); /** * Sets the value of the '{@link net.opengis.wfs.InsertedFeatureType#getHandle Handle}' attribute. * * * @param value the new value of the 'Handle' attribute. * @see #getHandle() * @generated */ void setHandle(String value); } // InsertedFeatureType