blob: 76a702a0646502471d9c5b29a4fd8ca311ba7c47 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2018 IBM Corporation, Zeligsoft Inc., and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bug 256040
*******************************************************************************/
package org.eclipse.ocl.ecore;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Send Signal Action</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.ecore.SendSignalAction#getSignal <em>Signal</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.ecore.EcorePackage#getSendSignalAction()
* @model
* @generated
*/
public interface SendSignalAction
extends EObject {
/**
* Returns the value of the '<em><b>Signal</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Signal</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Signal</em>' reference.
* @see #setSignal(EClass)
* @see org.eclipse.ocl.ecore.EcorePackage#getSendSignalAction_Signal()
* @model required="true"
* @generated
*/
EClass getSignal();
/**
* Sets the value of the '{@link org.eclipse.ocl.ecore.SendSignalAction#getSignal <em>Signal</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Signal</em>' reference.
* @see #getSignal()
* @generated
*/
void setSignal(EClass value);
} // SendSignalAction