/** * <copyright> * </copyright> * * $Id$ */ package edu.isistan.reassistant.ccdetector.model; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Query</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.isistan.reassistant.ccdetector.model.Query#getName <em>Name</em>}</li> * <li>{@link edu.isistan.reassistant.ccdetector.model.Query#getContent <em>Content</em>}</li> * <li>{@link edu.isistan.reassistant.ccdetector.model.Query#isInclude <em>Include</em>}</li> * </ul> * </p> * * @see edu.isistan.reassistant.ccdetector.model.CCDetectorModelPackage#getQuery() * @model * @generated */ public interface Query extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>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>Name</em>' attribute. * @see #setName(String) * @see edu.isistan.reassistant.ccdetector.model.CCDetectorModelPackage#getQuery_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link edu.isistan.reassistant.ccdetector.model.Query#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Content</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Content</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Content</em>' attribute. * @see #setContent(String) * @see edu.isistan.reassistant.ccdetector.model.CCDetectorModelPackage#getQuery_Content() * @model * @generated */ String getContent(); /** * Sets the value of the '{@link edu.isistan.reassistant.ccdetector.model.Query#getContent <em>Content</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Content</em>' attribute. * @see #getContent() * @generated */ void setContent(String value); /** * Returns the value of the '<em><b>Include</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Include</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Include</em>' attribute. * @see #setInclude(boolean) * @see edu.isistan.reassistant.ccdetector.model.CCDetectorModelPackage#getQuery_Include() * @model * @generated */ boolean isInclude(); /** * Sets the value of the '{@link edu.isistan.reassistant.ccdetector.model.Query#isInclude <em>Include</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Include</em>' attribute. * @see #isInclude() * @generated */ void setInclude(boolean value); } // Query