blob: f1f8343200b030d7ddf265ad6dabf56c4203726a [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 v1.0
* which accompanies this distribution, and is available at
* http{//www.eclipse.org/legal/epl-v10.html
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors{
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.strategy;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Focusing Strategy</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getEcviewFocusingId <em>Ecview Focusing Id</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getFocus <em>Focus</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getKeyCode <em>Key Code</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getModifierKeys <em>Modifier Keys</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getFocusingStrategy()
* @model
* @generated
*/
public interface FocusingStrategy extends StrategyBase {
/**
* Returns the value of the '<em><b>Ecview Focusing Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ecview Focusing Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ecview Focusing Id</em>' attribute.
* @see #setEcviewFocusingId(String)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getFocusingStrategy_EcviewFocusingId()
* @model unique="false"
* @generated
*/
String getEcviewFocusingId();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getEcviewFocusingId <em>Ecview Focusing Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ecview Focusing Id</em>' attribute.
* @see #getEcviewFocusingId()
* @generated
*/
void setEcviewFocusingId(String value);
/**
* Returns the value of the '<em><b>Focus</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.strategy.FocusingEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Focus</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Focus</em>' attribute.
* @see org.eclipse.osbp.xtext.strategy.FocusingEnum
* @see #setFocus(FocusingEnum)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getFocusingStrategy_Focus()
* @model unique="false"
* @generated
*/
FocusingEnum getFocus();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getFocus <em>Focus</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Focus</em>' attribute.
* @see org.eclipse.osbp.xtext.strategy.FocusingEnum
* @see #getFocus()
* @generated
*/
void setFocus(FocusingEnum value);
/**
* Returns the value of the '<em><b>Key Code</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Key Code</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Key Code</em>' attribute.
* @see #setKeyCode(String)
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getFocusingStrategy_KeyCode()
* @model unique="false"
* @generated
*/
String getKeyCode();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.strategy.FocusingStrategy#getKeyCode <em>Key Code</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Key Code</em>' attribute.
* @see #getKeyCode()
* @generated
*/
void setKeyCode(String value);
/**
* Returns the value of the '<em><b>Modifier Keys</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Modifier Keys</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Modifier Keys</em>' attribute list.
* @see org.eclipse.osbp.xtext.strategy.StrategyDSLPackage#getFocusingStrategy_ModifierKeys()
* @model unique="false"
* @generated
*/
EList<String> getModifierKeys();
} // FocusingStrategy