/** * * * * $Id$ */ package org.eclipse.papyrus.infra.queries.core.configuration; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Query Configuration'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.queries.core.configuration.ConfigurationPackage#getQueryConfiguration() * @model abstract="true" * @generated */ public interface QueryConfiguration extends EObject { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.papyrus.infra.queries.core.configuration.ConfigurationPackage#getQueryConfiguration_Name() * @model required="true" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.queries.core.configuration.QueryConfiguration#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // QueryConfiguration