blob: c8e0f9d67cea81454358abbcf879ab2588118229 [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:
* Jose C. Dominguez - Initial implementation
*
*/
package org.eclipse.osbp.xtext.strategy;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Strategy Target</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyTarget#getLayoutingStrategies <em>Layouting Strategies</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyTarget#getFocusingStrategies <em>Focusing Strategies</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyTarget#getFocusingEnhancer <em>Focusing Enhancer</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyTarget#getStrategyDefault <em>Strategy Default</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyTarget()
* @model
* @generated
*/
public interface StrategyTarget extends EObject {
/**
* Returns the value of the '<em><b>Layouting Strategies</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.strategy.LayoutingStrategy}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Layouting Strategies</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>Layouting Strategies</em>' containment reference list.
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyTarget_LayoutingStrategies()
* @model containment="true"
* @generated
*/
EList<LayoutingStrategy> getLayoutingStrategies();
/**
* Returns the value of the '<em><b>Focusing Strategies</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.strategy.FocusingStrategy}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Focusing Strategies</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>Focusing Strategies</em>' containment reference list.
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyTarget_FocusingStrategies()
* @model containment="true"
* @generated
*/
EList<FocusingStrategy> getFocusingStrategies();
/**
* Returns the value of the '<em><b>Focusing Enhancer</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.strategy.FocusingEnhancer}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Focusing Enhancer</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>Focusing Enhancer</em>' containment reference list.
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyTarget_FocusingEnhancer()
* @model containment="true"
* @generated
*/
EList<FocusingEnhancer> getFocusingEnhancer();
/**
* 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#getStrategyTarget_StrategyDefault()
* @model containment="true"
* @generated
*/
StrategyDefault getStrategyDefault();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.StrategyTarget#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);
} // StrategyTarget