/** * Copyright (c) 2012 BMW Car IT and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.jnario.feature.feature; import org.eclipse.emf.common.util.EList; import org.jnario.Specification; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Feature</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jnario.feature.feature.Feature#getDescription <em>Description</em>}</li> * <li>{@link org.jnario.feature.feature.Feature#getScenarios <em>Scenarios</em>}</li> * <li>{@link org.jnario.feature.feature.Feature#getBackground <em>Background</em>}</li> * </ul> * </p> * * @see org.jnario.feature.feature.FeaturePackage#getFeature() * @model * @generated */ public interface Feature extends Specification { /** * Returns the value of the '<em><b>Description</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Description</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see org.jnario.feature.feature.FeaturePackage#getFeature_Description() * @model * @generated */ String getDescription(); /** * Sets the value of the '{@link org.jnario.feature.feature.Feature#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); /** * Returns the value of the '<em><b>Scenarios</b></em>' reference list. * The list contents are of type {@link org.jnario.feature.feature.Scenario}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Scenarios</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Scenarios</em>' reference list. * @see org.jnario.feature.feature.FeaturePackage#getFeature_Scenarios() * @model transient="true" volatile="true" derived="true" * @generated */ EList<Scenario> getScenarios(); /** * Returns the value of the '<em><b>Background</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Background</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Background</em>' reference. * @see #setBackground(Background) * @see org.jnario.feature.feature.FeaturePackage#getFeature_Background() * @model transient="true" volatile="true" derived="true" * @generated */ Background getBackground(); /** * Sets the value of the '{@link org.jnario.feature.feature.Feature#getBackground <em>Background</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Background</em>' reference. * @see #getBackground() * @generated */ void setBackground(Background value); } // Feature