blob: ad8d1037f30371c166d0ed22da1dc65281925584 [file] [log] [blame]
/**
* Copyright (c) 2014, Loetz GmbH&Co.KG (Heidelberg)
* 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:
* Loetz GmbH&Co.KG - Initial implementation
*
*/
package org.eclipse.osbp.xtext.blip;
import org.eclipse.bpmn2.Event;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Blip Event</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.blip.BlipEvent#getEvent <em>Event</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.blip.BlipDSLPackage#getBlipEvent()
* @model
* @generated
*/
public interface BlipEvent extends BlipItem {
/**
* 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(Event)
* @see org.eclipse.osbp.xtext.blip.BlipDSLPackage#getBlipEvent_Event()
* @model
* @generated
*/
Event getEvent();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.blip.BlipEvent#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(Event value);
} // BlipEvent