/** * Copyright (c) 2015 committers of YAKINDU 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 * Contributors: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgen; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Feature Configuration</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgen.FeatureConfiguration#getType <em>Type</em>}</li> * <li>{@link org.yakindu.sct.model.sgen.FeatureConfiguration#getParameterValues <em>Parameter Values</em>}</li> * </ul> * * @see org.yakindu.sct.model.sgen.SGenPackage#getFeatureConfiguration() * @model * @generated */ public interface FeatureConfiguration extends EObject { /** * Returns the value of the '<em><b>Type</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' reference. * @see #setType(FeatureType) * @see org.yakindu.sct.model.sgen.SGenPackage#getFeatureConfiguration_Type() * @model * @generated */ FeatureType getType(); /** * Sets the value of the '{@link org.yakindu.sct.model.sgen.FeatureConfiguration#getType <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' reference. * @see #getType() * @generated */ void setType(FeatureType value); /** * Returns the value of the '<em><b>Parameter Values</b></em>' containment reference list. * The list contents are of type {@link org.yakindu.sct.model.sgen.FeatureParameterValue}. * It is bidirectional and its opposite is '{@link org.yakindu.sct.model.sgen.FeatureParameterValue#getFeatureConfiguration <em>Feature Configuration</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameter Values</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>Parameter Values</em>' containment reference list. * @see org.yakindu.sct.model.sgen.SGenPackage#getFeatureConfiguration_ParameterValues() * @see org.yakindu.sct.model.sgen.FeatureParameterValue#getFeatureConfiguration * @model opposite="featureConfiguration" containment="true" * @generated */ EList<FeatureParameterValue> getParameterValues(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model * @generated */ FeatureParameterValue getParameterValue(String parameterName); } // FeatureConfiguration