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

COVERAGE SUMMARY FOR SOURCE FILE [TimeSpanMeasurementListWithBackgroundStore.java]

nameclass, %method, %block, %line, %
TimeSpanMeasurementListWithBackgroundStore.java100% (1/1)100% (2/2)100% (23/23)100% (3/3)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TimeSpanMeasurementListWithBackgroundStore100% (1/1)100% (2/2)100% (23/23)100% (3/3)
TimeSpanMeasurementListWithBackgroundStore (BackgroundMemoryList, BackgroundM... 100% (1/1)100% (5/5)100% (2/2)
get (int): Measurement 100% (1/1)100% (18/18)100% (1/1)

1package de.uka.ipd.sdq.sensorframework.dao.file.entities;
2 
3import de.uka.ipd.sdq.sensorframework.entities.Measurement;
4import de.uka.ipd.sdq.sensorframework.storage.lists.BackgroundMemoryList;
5 
6public class TimeSpanMeasurementListWithBackgroundStore extends
7                MeasurementListWithBackgroundStore<Double> {
8 
9        public TimeSpanMeasurementListWithBackgroundStore(
10                        BackgroundMemoryList<Double> eventTimes,
11                        BackgroundMemoryList<Double> internalStore) {
12                super(eventTimes, internalStore);
13        }
14 
15        @Override
16        public Measurement get(int i) {
17                return new TimeSpanMeasurementImpl(i, eventTimes.get(i), this.measurementsStore.get(i));
18        }
19 
20}

[all classes][de.uka.ipd.sdq.sensorframework.dao.file.entities]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov