blob: 95bf94d068ba044b7010d941adcc862e2ad0372c [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
* ******************************************************************************
*
* $Id: Rule.java,v 1.2 2008/07/30 11:13:13 dkolovos Exp $
*/
package org.eclipse.epsilon.hutn.model.config.hutnConfig;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Rule</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Rule#getClassifier <em>Classifier</em>}</li>
* <li>{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Rule#getAttribute <em>Attribute</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getRule()
* @model abstract="true"
* @generated
*/
public interface Rule extends EObject {
/**
* Returns the value of the '<em><b>Classifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Classifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Classifier</em>' attribute.
* @see #setClassifier(String)
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getRule_Classifier()
* @model
* @generated
*/
String getClassifier();
/**
* Sets the value of the '{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Rule#getClassifier <em>Classifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Classifier</em>' attribute.
* @see #getClassifier()
* @generated
*/
void setClassifier(String value);
/**
* Returns the value of the '<em><b>Attribute</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attribute</em>' attribute.
* @see #setAttribute(String)
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getRule_Attribute()
* @model
* @generated
*/
String getAttribute();
/**
* Sets the value of the '{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Rule#getAttribute <em>Attribute</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attribute</em>' attribute.
* @see #getAttribute()
* @generated
*/
void setAttribute(String value);
} // Rule