Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2f18c882681f16d4b03a0266eb5dabf9ddca44f1 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
 * <copyright>
 * </copyright>
 *

 */
package org.eclipse.etrice.core.room;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Choicepoint Terminal</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.etrice.core.room.ChoicepointTerminal#getCp <em>Cp</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getChoicepointTerminal()
 * @model
 * @generated
 */
public interface ChoicepointTerminal extends TransitionTerminal
{
  /**
   * Returns the value of the '<em><b>Cp</b></em>' reference.
   * <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Cp</em>' reference isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * @return the value of the '<em>Cp</em>' reference.
   * @see #setCp(ChoicePoint)
   * @see org.eclipse.etrice.core.room.RoomPackage#getChoicepointTerminal_Cp()
   * @model
   * @generated
   */
  ChoicePoint getCp();

  /**
   * Sets the value of the '{@link org.eclipse.etrice.core.room.ChoicepointTerminal#getCp <em>Cp</em>}' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @param value the new value of the '<em>Cp</em>' reference.
   * @see #getCp()
   * @generated
   */
  void setCp(ChoicePoint value);

} // ChoicepointTerminal

Back to the top