blob: a911c5a47328f51466edd6d9dfb84b871ac31950 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Loetz GmbH&Co.KG - Initial implementation
* Jose C. Dominguez - ongoing development
*
*/
package org.eclipse.osbp.xtext.strategy;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Strategy</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.strategy.Strategy#getTargets <em>Targets</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.Strategy#getStrategyDefault <em>Strategy Default</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategy()
* @model
* @generated
*/
public interface Strategy extends EObject {
/**
* Returns the value of the '<em><b>Targets</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Targets</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Targets</em>' containment reference.
* @see #setTargets(StrategyTarget)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategy_Targets()
* @model containment="true"
* @generated
*/
StrategyTarget getTargets();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.Strategy#getTargets <em>Targets</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Targets</em>' containment reference.
* @see #getTargets()
* @generated
*/
void setTargets(StrategyTarget value);
/**
* Returns the value of the '<em><b>Strategy Default</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Strategy Default</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Strategy Default</em>' containment reference.
* @see #setStrategyDefault(StrategyDefault)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategy_StrategyDefault()
* @model containment="true"
* @generated
*/
StrategyDefault getStrategyDefault();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.Strategy#getStrategyDefault <em>Strategy Default</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Strategy Default</em>' containment reference.
* @see #getStrategyDefault()
* @generated
*/
void setStrategyDefault(StrategyDefault value);
} // Strategy