EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012) |
---|
[all classes][de.uka.ipd.sdq.pipesandfilters.framework.recorder.sensorframework.launch] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
SensorFrameworkConfig.java | 0% (0/1) | 0% (0/3) | 0% (0/15) | 0% (0/5) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class SensorFrameworkConfig | 0% (0/1) | 0% (0/3) | 0% (0/15) | 0% (0/5) |
SensorFrameworkConfig (): void | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
getDatasourceID (): long | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
setConfiguration (Map): void | 0% (0/1) | 0% (0/9) | 0% (0/3) |
1 | package de.uka.ipd.sdq.pipesandfilters.framework.recorder.sensorframework.launch; |
2 | |
3 | import java.io.Serializable; |
4 | import java.util.Map; |
5 | |
6 | import de.uka.ipd.sdq.pipesandfilters.framework.recorder.launch.IRecorderConfiguration; |
7 | |
8 | public class SensorFrameworkConfig implements IRecorderConfiguration, Serializable { |
9 | |
10 | private static final long serialVersionUID = 1L; |
11 | |
12 | private long datasourceID; |
13 | |
14 | public static final String DATASOURCE_ID = "datasourceID"; |
15 | |
16 | public void setConfiguration(Map<String,Object> configuration) { |
17 | this.datasourceID = (Integer)configuration.get( |
18 | DATASOURCE_ID); |
19 | } |
20 | |
21 | public long getDatasourceID() { |
22 | return this.datasourceID; |
23 | } |
24 | |
25 | } |
[all classes][de.uka.ipd.sdq.pipesandfilters.framework.recorder.sensorframework.launch] |
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov |