blob: 6e8401e768e9cccc37eb19ca43b8f55564deab62 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Server Call</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An abstract description for client/server communication
* It refers to a required runnable that describes the called server operation
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.ServerCall#getServerRunnable <em>Server Runnable</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.ServerCall#getPort <em>Port</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getServerCall()
* @model abstract="true"
* @generated
*/
public interface ServerCall extends ActivityGraphItem {
/**
* Returns the value of the '<em><b>Server Runnable</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Server Runnable</em>' reference.
* @see #setServerRunnable(org.eclipse.app4mc.amalthea.model.Runnable)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getServerCall_ServerRunnable()
* @model required="true"
* @generated
*/
org.eclipse.app4mc.amalthea.model.Runnable getServerRunnable();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ServerCall#getServerRunnable <em>Server Runnable</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Server Runnable</em>' reference.
* @see #getServerRunnable()
* @generated
*/
void setServerRunnable(org.eclipse.app4mc.amalthea.model.Runnable value);
/**
* Returns the value of the '<em><b>Port</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Port</em>' reference.
* @see #setPort(ComponentPort)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getServerCall_Port()
* @model
* @generated
*/
ComponentPort getPort();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.ServerCall#getPort <em>Port</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Port</em>' reference.
* @see #getPort()
* @generated
*/
void setPort(ComponentPort value);
} // ServerCall