blob: 34e222b5dc9e5b278586ad72833a299319d477cf [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.infrastructure;
import org.eclipse.efm.ecore.formalml.common.AbstractElement;
import org.eclipse.efm.ecore.formalml.common.NamedElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Com Point</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.ComPoint#getMachine <em>Machine</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.ComPoint#getPort <em>Port</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getComPoint()
* @model
* @generated
*/
public interface ComPoint extends AbstractElement {
/**
* Returns the value of the '<em><b>Machine</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Machine</em>' reference.
* @see #setMachine(NamedElement)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getComPoint_Machine()
* @model
* @generated
*/
NamedElement getMachine();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.ComPoint#getMachine <em>Machine</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Machine</em>' reference.
* @see #getMachine()
* @generated
*/
void setMachine(NamedElement 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(Port)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getComPoint_Port()
* @model
* @generated
*/
Port getPort();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.ComPoint#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(Port value);
} // ComPoint