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

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getDeleteType() * @model extendedMetaData="name='DeleteType' kind='elementOnly'" * @generated */ public interface DeleteType extends AbstractTransactionActionType { /** * 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#getDeleteType_Filter() * @model */ Filter getFilter(); /** * Sets the value of the '{@link net.opengis.wfs20.DeleteType#getFilter Filter}' attribute. * * * @param value the new value of the 'Filter' attribute. * @see #getFilter() * @generated */ void setFilter(Filter 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#getDeleteType_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.DeleteType#getTypeName Type Name}' attribute. * * * @param value the new value of the 'Type Name' attribute. * @see #getTypeName() * @generated */ void setTypeName(QName value); } // DeleteType