Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d6baa5fcc3fab0380d70213738fdf152d141feb1 (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
/**
 */
package org.eclipse.etrice.core.room;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Continuation Transition</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>Continuation transitions start at entry or exit points
 * ({@link EntryPoint}s or {@link ExitPoint}s) or form
 * the default branch of a {@link ChoicePoint}.
 * 
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getContinuationTransition()
 * @model
 * @generated
 */
public interface ContinuationTransition extends NonInitialTransition
{
} // ContinuationTransition

Back to the top