blob: fe088555932c114d0bf9ee5088483293994c97ae [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.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Strategy Default</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyDefault#getDefaultLayouting <em>Default Layouting</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.StrategyDefault#getDefaultFocusing <em>Default Focusing</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyDefault()
* @model
* @generated
*/
public interface StrategyDefault extends EObject {
/**
* Returns the value of the '<em><b>Default Layouting</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Default Layouting</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Default Layouting</em>' reference.
* @see #setDefaultLayouting(LayoutingStrategy)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyDefault_DefaultLayouting()
* @model
* @generated
*/
LayoutingStrategy getDefaultLayouting();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.StrategyDefault#getDefaultLayouting <em>Default Layouting</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Layouting</em>' reference.
* @see #getDefaultLayouting()
* @generated
*/
void setDefaultLayouting(LayoutingStrategy value);
/**
* Returns the value of the '<em><b>Default Focusing</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Default Focusing</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Default Focusing</em>' reference.
* @see #setDefaultFocusing(FocusingEnhancer)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getStrategyDefault_DefaultFocusing()
* @model
* @generated
*/
FocusingEnhancer getDefaultFocusing();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.StrategyDefault#getDefaultFocusing <em>Default Focusing</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Focusing</em>' reference.
* @see #getDefaultFocusing()
* @generated
*/
void setDefaultFocusing(FocusingEnhancer value);
} // StrategyDefault