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

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Service Implementation</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * A service implementation can be reagrded as the replicated peer port of all {@link SAPRef}s
 * that are bound to it following the service resolution logic.
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.etrice.core.room.ServiceImplementation#getSpp <em>Spp</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getServiceImplementation()
 * @model
 * @generated
 */
public interface ServiceImplementation extends EObject
{
  /**
   * Returns the value of the '<em><b>Spp</b></em>' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * This is the SPP connected to the service.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Spp</em>' reference.
   * @see #setSpp(SPPRef)
   * @see org.eclipse.etrice.core.room.RoomPackage#getServiceImplementation_Spp()
   * @model
   * @generated
   */
  SPPRef getSpp();

  /**
   * Sets the value of the '{@link org.eclipse.etrice.core.room.ServiceImplementation#getSpp <em>Spp</em>}' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @param value the new value of the '<em>Spp</em>' reference.
   * @see #getSpp()
   * @generated
   */
  void setSpp(SPPRef value);

} // ServiceImplementation

Back to the top