blob: f595d261486b2bb0db748ceabf856acadcdd11cd [file] [log] [blame]
/**
* Copyright (c) 2011, 2017 - 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.statemachine;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Statemachine Storage</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getKey <em>Key</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getAttribute <em>Attribute</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getContent <em>Content</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineStorage()
* @model
* @generated
*/
public interface StatemachineStorage extends StatemachineAction {
/**
* Returns the value of the '<em><b>Key</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Key</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</em>' attribute.
* @see #setKey(String)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineStorage_Key()
* @model unique="false"
* @generated
*/
String getKey();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getKey <em>Key</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Key</em>' attribute.
* @see #getKey()
* @generated
*/
void setKey(String value);
/**
* Returns the value of the '<em><b>Attribute</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attribute</em>' attribute.
* @see #setAttribute(String)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineStorage_Attribute()
* @model unique="false"
* @generated
*/
String getAttribute();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getAttribute <em>Attribute</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attribute</em>' attribute.
* @see #getAttribute()
* @generated
*/
void setAttribute(String value);
/**
* Returns the value of the '<em><b>Content</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content</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>Content</em>' containment reference.
* @see #setContent(StatemachineActionFieldConcatenation)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineStorage_Content()
* @model containment="true"
* @generated
*/
StatemachineActionFieldConcatenation getContent();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineStorage#getContent <em>Content</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content</em>' containment reference.
* @see #getContent()
* @generated
*/
void setContent(StatemachineActionFieldConcatenation value);
} // StatemachineStorage