blob: b3754a15b937c0f07d803ece5d73d2c93b270b28 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), 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
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Send Event Command</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiSendEventCommand#getEventTopic <em>Event Topic</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiSendEventCommand#isNoAutoTrigger <em>No Auto Trigger</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiSendEventCommand()
* @model
* @generated
*/
public interface UiSendEventCommand extends UiCommand {
/**
* Returns the value of the '<em><b>Event Topic</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Event Topic</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Event Topic</em>' attribute.
* @see #setEventTopic(String)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiSendEventCommand_EventTopic()
* @model
* @generated
*/
String getEventTopic();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiSendEventCommand#getEventTopic <em>Event Topic</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Event Topic</em>' attribute.
* @see #getEventTopic()
* @generated
*/
void setEventTopic(String value);
/**
* Returns the value of the '<em><b>No Auto Trigger</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>No Auto Trigger</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>No Auto Trigger</em>' attribute.
* @see #setNoAutoTrigger(boolean)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiSendEventCommand_NoAutoTrigger()
* @model default="false"
* @generated
*/
boolean isNoAutoTrigger();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiSendEventCommand#isNoAutoTrigger <em>No Auto Trigger</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>No Auto Trigger</em>' attribute.
* @see #isNoAutoTrigger()
* @generated
*/
void setNoAutoTrigger(boolean value);
} // UiSendEventCommand