blob: 3fb199f334275dd9f38829925c42568ba7327ce2 [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: Configuration.java,v 1.2 2008/07/30 11:13:13 dkolovos Exp $
*/
package org.eclipse.epsilon.hutn.model.config.hutnConfig;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Configuration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Configuration#getRules <em>Rules</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getConfiguration()
* @model
* @generated
*/
public interface Configuration extends EObject {
/**
* Returns the value of the '<em><b>Rules</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epsilon.hutn.model.config.hutnConfig.Rule}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rules</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rules</em>' containment reference list.
* @see org.eclipse.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage#getConfiguration_Rules()
* @model containment="true"
* @generated
*/
EList<Rule> getRules();
} // Configuration