Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e66531eb4f5ae97d6716351b05eea181f078785d (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>Entry Point</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>An entry point is located at the border of a {@link State}
 * and is visible and accessible outside. Outside
 * it can be the target of a {@link Transition} and inside the source.
 * If it is not connected in the interior then it is a
 * <em>transition to history</em>.
 * 
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getEntryPoint()
 * @model
 * @generated
 */
public interface EntryPoint extends TrPoint
{
} // EntryPoint

Back to the top