| EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012) |
|---|
| [all classes][de.uka.ipd.sdq.sensorframework.dao.file.entities] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| StateMeasurementListWithBackgroundStore.java | 100% (1/1) | 100% (2/2) | 100% (22/22) | 100% (3/3) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class StateMeasurementListWithBackgroundStore | 100% (1/1) | 100% (2/2) | 100% (22/22) | 100% (3/3) |
| StateMeasurementListWithBackgroundStore (BackgroundMemoryList, BackgroundMemo... | 100% (1/1) | 100% (5/5) | 100% (2/2) | |
| get (int): Measurement | 100% (1/1) | 100% (17/17) | 100% (1/1) |
| 1 | package de.uka.ipd.sdq.sensorframework.dao.file.entities; |
| 2 | |
| 3 | import de.uka.ipd.sdq.sensorframework.entities.Measurement; |
| 4 | import de.uka.ipd.sdq.sensorframework.entities.State; |
| 5 | import de.uka.ipd.sdq.sensorframework.storage.lists.BackgroundMemoryList; |
| 6 | |
| 7 | public class StateMeasurementListWithBackgroundStore extends |
| 8 | MeasurementListWithBackgroundStore<State> { |
| 9 | |
| 10 | public StateMeasurementListWithBackgroundStore( |
| 11 | BackgroundMemoryList<Double> eventTimes, BackgroundMemoryList<State> internalStore) { |
| 12 | super(eventTimes, internalStore); |
| 13 | } |
| 14 | |
| 15 | @Override |
| 16 | public Measurement get(int i) { |
| 17 | return new StateMeasurementImpl(i, eventTimes.get(i), measurementsStore.get(i)); |
| 18 | } |
| 19 | } |
| [all classes][de.uka.ipd.sdq.sensorframework.dao.file.entities] |
| EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov |