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 [MeasurementListWithBackgroundStore.java]

nameclass, %method, %block, %line, %
MeasurementListWithBackgroundStore.java100% (1/1)100% (2/2)100% (13/13)100% (5/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class MeasurementListWithBackgroundStore100% (1/1)100% (2/2)100% (13/13)100% (5/5)
MeasurementListWithBackgroundStore (BackgroundMemoryList, BackgroundMemoryLis... 100% (1/1)100% (9/9)100% (4/4)
size (): int 100% (1/1)100% (4/4)100% (1/1)

1package de.uka.ipd.sdq.sensorframework.dao.file.entities;
2 
3import java.util.AbstractList;
4 
5import de.uka.ipd.sdq.sensorframework.entities.Measurement;
6import de.uka.ipd.sdq.sensorframework.storage.lists.BackgroundMemoryList;
7 
8public abstract class MeasurementListWithBackgroundStore<T> 
9extends AbstractList<Measurement> {
10 
11        protected final BackgroundMemoryList<T> measurementsStore;
12        protected final BackgroundMemoryList<Double> eventTimes;
13 
14        public MeasurementListWithBackgroundStore(
15                        BackgroundMemoryList<Double> eventTimes,
16                        BackgroundMemoryList<T> internalStore) {
17                super();
18                this.eventTimes = eventTimes;
19                this.measurementsStore = internalStore;
20        }        
21        
22        @Override
23        public abstract Measurement get(int i);
24 
25        @Override
26        public int size() {
27                return measurementsStore.size();
28        }
29}

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