source: trunk/CrossPare/src/de/ugoe/cs/cpdp/decentApp/models/decent/AgentPool.java

Last change on this file was 36, checked in by ftrautsch, 9 years ago

integration of decent models in crosspare

  • Property svn:mime-type set to text/plain
File size: 1.2 KB
Line 
1/**
2 */
3package de.ugoe.cs.cpdp.decentApp.models.decent;
4
5import org.eclipse.emf.common.util.EList;
6
7import org.eclipse.emf.ecore.EObject;
8
9/**
10 * <!-- begin-user-doc -->
11 * A representation of the model object '<em><b>Agent Pool</b></em>'.
12 * <!-- end-user-doc -->
13 *
14 * <p>
15 * The following features are supported:
16 * <ul>
17 *   <li>{@link de.ugoe.cs.cpdp.decentApp.models.decent.AgentPool#getAgents <em>Agents</em>}</li>
18 * </ul>
19 * </p>
20 *
21 * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAgentPool()
22 * @model
23 * @generated
24 */
25public interface AgentPool extends EObject {
26        /**
27         * Returns the value of the '<em><b>Agents</b></em>' containment reference list.
28         * The list contents are of type {@link de.ugoe.cs.cpdp.decentApp.models.decent.Agent}.
29         * <!-- begin-user-doc -->
30         * <p>
31         * If the meaning of the '<em>Agents</em>' containment reference list isn't clear,
32         * there really should be more of a description here...
33         * </p>
34         * <!-- end-user-doc -->
35         * @return the value of the '<em>Agents</em>' containment reference list.
36         * @see de.ugoe.cs.cpdp.decentApp.models.decent.DECENTPackage#getAgentPool_Agents()
37         * @model containment="true"
38         * @generated
39         */
40        EList<Agent> getAgents();
41
42} // AgentPool
Note: See TracBrowser for help on using the repository browser.