blob: d357c71a668d0213fdb326083e2300ba0b029112 [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2013, 2013 SAP AG.
* 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
*
* Contributors:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.fmc.mm;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Agent</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Agents are active components
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.fmc.mm.Agent#getAccessConnections <em>Access Connections</em>}</li>
* <li>{@link org.eclipse.fmc.mm.Agent#isHuman <em>Human</em>}</li>
* <li>{@link org.eclipse.fmc.mm.Agent#getSourceChannels <em>Source Channels</em>}</li>
* <li>{@link org.eclipse.fmc.mm.Agent#getTargetChannels <em>Target Channels</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.fmc.mm.FmcPackage#getAgent()
* @model
* @generated
*/
public interface Agent extends FMCNode {
/**
* Returns the value of the '<em><b>Access Connections</b></em>' reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.Access}.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.Access#getAgent <em>Agent</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Access Connections</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Access Connections</em>' reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getAgent_AccessConnections()
* @see org.eclipse.fmc.mm.Access#getAgent
* @model opposite="agent"
* @generated
*/
EList<Access> getAccessConnections();
/**
* Returns the value of the '<em><b>Human</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Human</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Human</em>' attribute.
* @see #setHuman(boolean)
* @see org.eclipse.fmc.mm.FmcPackage#getAgent_Human()
* @model
* @generated
*/
boolean isHuman();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.Agent#isHuman <em>Human</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Human</em>' attribute.
* @see #isHuman()
* @generated
*/
void setHuman(boolean value);
/**
* Returns the value of the '<em><b>Source Channels</b></em>' reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.Channel}.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.Channel#getSource <em>Source</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source Channels</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source Channels</em>' reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getAgent_SourceChannels()
* @see org.eclipse.fmc.mm.Channel#getSource
* @model opposite="source"
* @generated
*/
EList<Channel> getSourceChannels();
/**
* Returns the value of the '<em><b>Target Channels</b></em>' reference list.
* The list contents are of type {@link org.eclipse.fmc.mm.Channel}.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.Channel#getTarget <em>Target</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target Channels</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target Channels</em>' reference list.
* @see org.eclipse.fmc.mm.FmcPackage#getAgent_TargetChannels()
* @see org.eclipse.fmc.mm.Channel#getTarget
* @model opposite="target"
* @generated
*/
EList<Channel> getTargetChannels();
} // Agent