/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.cat.csw20; import java.lang.String; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Delete Type</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * * Deletes one or more catalogue items that satisfy some set of * conditions. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.cat.csw20.DeleteType#getConstraint <em>Constraint</em>}</li> * <li>{@link net.opengis.cat.csw20.DeleteType#getHandle <em>Handle</em>}</li> * <li>{@link net.opengis.cat.csw20.DeleteType#getTypeName <em>Type Name</em>}</li> * </ul> * </p> * * @see net.opengis.cat.csw20.Csw20Package#getDeleteType() * @model extendedMetaData="name='DeleteType' kind='elementOnly'" * @generated */ public interface DeleteType extends EObject { /** * Returns the value of the '<em><b>Constraint</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Constraint</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Constraint</em>' containment reference. * @see #setConstraint(QueryConstraintType) * @see net.opengis.cat.csw20.Csw20Package#getDeleteType_Constraint() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Constraint' namespace='##targetNamespace'" * @generated */ QueryConstraintType getConstraint(); /** * Sets the value of the '{@link net.opengis.cat.csw20.DeleteType#getConstraint <em>Constraint</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Constraint</em>' containment reference. * @see #getConstraint() * @generated */ void setConstraint(QueryConstraintType value); /** * Returns the value of the '<em><b>Handle</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Handle</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Handle</em>' attribute. * @see #setHandle(String) * @see net.opengis.cat.csw20.Csw20Package#getDeleteType_Handle() * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" * extendedMetaData="kind='attribute' name='handle'" * @generated */ String getHandle(); /** * Sets the value of the '{@link net.opengis.cat.csw20.DeleteType#getHandle <em>Handle</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Handle</em>' attribute. * @see #getHandle() * @generated */ void setHandle(String value); /** * Returns the value of the '<em><b>Type Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type Name</em>' attribute. * @see #setTypeName(String) * @see net.opengis.cat.csw20.Csw20Package#getDeleteType_TypeName() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='typeName'" * @generated */ String getTypeName(); /** * Sets the value of the '{@link net.opengis.cat.csw20.DeleteType#getTypeName <em>Type Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type Name</em>' attribute. * @see #getTypeName() * @generated */ void setTypeName(String value); } // DeleteType