/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.mappings; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Rule Base</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Base class for rule like audit, metric rules... * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.mappings.RuleBase#getName <em>Name</em>}</li> * <li>{@link org.eclipse.gmf.mappings.RuleBase#getDescription <em>Description</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.mappings.GMFMapPackage#getRuleBase() * @model interface="true" abstract="true" * @generated */ public interface RuleBase extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * A human readable name of this rule * <!-- end-model-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.gmf.mappings.GMFMapPackage#getRuleBase_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.gmf.mappings.RuleBase#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>Description</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The detailed description of this rule semantics * <!-- end-model-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see org.eclipse.gmf.mappings.GMFMapPackage#getRuleBase_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link org.eclipse.gmf.mappings.RuleBase#getDescription <em>Description</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Description</em>' attribute. * @see #getDescription() * @generated */ void setDescription(String value); } // RuleBase