/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.buckminster.rmap.maven; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Scope</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.buckminster.rmap.maven.Scope#getName <em>Name</em>}</li> * <li>{@link org.eclipse.buckminster.rmap.maven.Scope#isExclude <em>Exclude * </em>}</li> * </ul> * </p> * * @see org.eclipse.buckminster.rmap.maven.MavenPackage#getScope() * @model * @generated */ public interface Scope 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 org.eclipse.buckminster.rmap.maven.MavenPackage#getScope_Name() * @model required="true" * @generated */ String getName(); /** * Returns the value of the '<em><b>Exclude</b></em>' attribute. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Exclude</em>' attribute isn't clear, there * really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Exclude</em>' attribute. * @see #setExclude(boolean) * @see org.eclipse.buckminster.rmap.maven.MavenPackage#getScope_Exclude() * @model required="true" * @generated */ boolean isExclude(); /** * Sets the value of the ' * {@link org.eclipse.buckminster.rmap.maven.Scope#isExclude * <em>Exclude</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc * --> * * @param value * the new value of the '<em>Exclude</em>' attribute. * @see #isExclude() * @generated */ void setExclude(boolean value); /** * Sets the value of the ' * {@link org.eclipse.buckminster.rmap.maven.Scope#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); } // Scope