Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cb5776be6ad12fd9f19a0de8297626bf53a9323f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 */
package org.eclipse.etrice.core.room;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Exit Point</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>An exit point is located at the border of a {@link State}
 * and is visible and accessible outside. Outside
 * it can be the source of a {@link Transition} and inside the target.
 * If it is not connected in the interior then it is a
 * <em>group transition</em>.
 * 
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getExitPoint()
 * @model
 * @generated
 */
public interface ExitPoint extends TrPoint
{
} // ExitPoint

Back to the top