EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.simulation.abstractsimengine]

COVERAGE SUMMARY FOR SOURCE FILE [SimulationElement.java]

nameclass, %method, %block, %line, %
SimulationElement.java0%   (0/1)0%   (0/3)0%   (0/15)0%   (0/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SimulationElement0%   (0/1)0%   (0/3)0%   (0/15)0%   (0/6)
SimulationElement (ISimulationModel, String): void 0%   (0/1)0%   (0/9)0%   (0/4)
getModel (): ISimulationModel 0%   (0/1)0%   (0/3)0%   (0/1)
getName (): String 0%   (0/1)0%   (0/3)0%   (0/1)

1package de.uka.ipd.sdq.simulation.abstractsimengine;
2 
3/**
4 * A simulation element is a named object which is a part of the simulation model and, as such,
5 * needs access to the implementation class of the {@link ISimulationModel} interface.
6 * 
7 * @author Steffen Becker (this code has been factored out from SimuCom)
8 * @author Philipp Merkle
9 * 
10 * @param <M>
11 *            the type of the simulation model
12 */
13public abstract class SimulationElement {
14 
15    private String name;
16    private ISimulationModel model;
17 
18    public SimulationElement(ISimulationModel model, String name) {
19        this.model = model;
20        this.name = name;
21    }
22 
23    /**
24     * Returns the name of this simulation element.
25     */
26    public String getName() {
27        return name;
28    }
29 
30    /**
31     * Returns the simulation model.
32     */
33    public ISimulationModel getModel() {
34        return this.model;
35    }
36 
37}

[all classes][de.uka.ipd.sdq.simulation.abstractsimengine]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov