blob: dfa9f9a15481df5877568e58eecdac6d77a119ac [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 Control DTO Attribute</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#getAttributeType <em>Attribute Type</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#isHasEvent <em>Has Event</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#getEvent <em>Event</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineControlDTOAttribute()
* @model
* @generated
*/
public interface StatemachineControlDTOAttribute extends StatemachineBase {
/**
* Returns the value of the '<em><b>Attribute Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attribute Type</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>Attribute Type</em>' containment reference.
* @see #setAttributeType(StatemachineDTOType)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineControlDTOAttribute_AttributeType()
* @model containment="true"
* @generated
*/
StatemachineDTOType getAttributeType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#getAttributeType <em>Attribute Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Attribute Type</em>' containment reference.
* @see #getAttributeType()
* @generated
*/
void setAttributeType(StatemachineDTOType value);
/**
* Returns the value of the '<em><b>Has Event</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Has Event</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Has Event</em>' attribute.
* @see #setHasEvent(boolean)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineControlDTOAttribute_HasEvent()
* @model unique="false"
* @generated
*/
boolean isHasEvent();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#isHasEvent <em>Has Event</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Has Event</em>' attribute.
* @see #isHasEvent()
* @generated
*/
void setHasEvent(boolean value);
/**
* Returns the value of the '<em><b>Event</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Event</em>' reference.
* @see #setEvent(StatemachineEvent)
* @see org.eclipse.osbp.xtext.statemachine.StatemachineDSLPackage#getStatemachineControlDTOAttribute_Event()
* @model
* @generated
*/
StatemachineEvent getEvent();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.statemachine.StatemachineControlDTOAttribute#getEvent <em>Event</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event</em>' reference.
* @see #getEvent()
* @generated
*/
void setEvent(StatemachineEvent value);
} // StatemachineControlDTOAttribute