Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 54e36aff9cffcf9cebbd046787cebe03e72d93f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                     






                                                                   
                                                                                         




                                        
       



                                                                                      




                                                             
                                            



































                                                                                                        
                          



                                                                       
                   








                                                                                                                
                             

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


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>SP Point</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * <br>Links to a {@link SPP} of an {@link ActorContainerRef}, i.e. an SPP of a sub actor
 * 
 * <!-- end-model-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link org.eclipse.etrice.core.room.SPPoint#getRef <em>Ref</em>}</li>
 *   <li>{@link org.eclipse.etrice.core.room.SPPoint#getService <em>Service</em>}</li>
 * </ul>
 *
 * @see org.eclipse.etrice.core.room.RoomPackage#getSPPoint()
 * @model
 * @generated
 */
public interface SPPoint extends RoomElement
{
  /**
   * Returns the value of the '<em><b>Ref</b></em>' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is the referenced actor container ref.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Ref</em>' reference.
   * @see #setRef(ActorContainerRef)
   * @see org.eclipse.etrice.core.room.RoomPackage#getSPPoint_Ref()
   * @model
   * @generated
   */
  ActorContainerRef getRef();

  /**
   * Sets the value of the '{@link org.eclipse.etrice.core.room.SPPoint#getRef <em>Ref</em>}' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @param value the new value of the '<em>Ref</em>' reference.
   * @see #getRef()
   * @generated
   */
  void setRef(ActorContainerRef value);

  /**
   * Returns the value of the '<em><b>Service</b></em>' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * <!-- begin-model-doc -->
   * <br>This is the referenced service.
   * 
   * <!-- end-model-doc -->
   * @return the value of the '<em>Service</em>' reference.
   * @see #setService(SPP)
   * @see org.eclipse.etrice.core.room.RoomPackage#getSPPoint_Service()
   * @model
   * @generated
   */
  SPP getService();

  /**
   * Sets the value of the '{@link org.eclipse.etrice.core.room.SPPoint#getService <em>Service</em>}' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @param value the new value of the '<em>Service</em>' reference.
   * @see #getService()
   * @generated
   */
  void setService(SPP value);

} // SPPoint

Back to the top