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

nameclass, %method, %block, %line, %
TimeSpanMeasurementImpl.java100% (1/1)33%  (2/6)24%  (11/46)36%  (4/11)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TimeSpanMeasurementImpl100% (1/1)33%  (2/6)24%  (11/46)36%  (4/11)
getSensor (): TimeSpanSensor 0%   (0/1)0%   (0/4)0%   (0/1)
setSensor (TimeSpanSensor): void 0%   (0/1)0%   (0/4)0%   (0/1)
setTimeSpan (double): void 0%   (0/1)0%   (0/4)0%   (0/2)
toString (): String 0%   (0/1)0%   (0/23)0%   (0/3)
TimeSpanMeasurementImpl (long, double, double): void 100% (1/1)100% (8/8)100% (3/3)
getTimeSpan (): double 100% (1/1)100% (3/3)100% (1/1)

1/**
2 * 
3 */
4package de.uka.ipd.sdq.sensorframework.dao.file.entities;
5 
6import de.uka.ipd.sdq.sensorframework.entities.TimeSpanMeasurement;
7import de.uka.ipd.sdq.sensorframework.entities.TimeSpanSensor;
8 
9/**
10 * @author Ihssane El-Oudghiri 
11 * 
12 * TODO Kommentare TODO Warum wird hier nicht TimeSpanSensorAndMeasurement
13 * referenziert??
14 * TODO add toString method...
15 */
16public class TimeSpanMeasurementImpl 
17extends MeasurementImpl 
18implements TimeSpanMeasurement {
19 
20        private double timeSpan;
21 
22        public TimeSpanMeasurementImpl(long id, double eventTime, double timeSpan) {
23                super(id, eventTime);
24                this.timeSpan = timeSpan;
25        }
26 
27        public TimeSpanSensor getSensor() {
28                throw new UnsupportedOperationException();
29        }
30 
31        public double getTimeSpan() {
32                return timeSpan;
33        }
34 
35        public void setSensor(TimeSpanSensor value) {
36                throw new UnsupportedOperationException();
37        }
38 
39        public void setTimeSpan(double value) {
40                this.timeSpan = value;
41        }
42        
43        /* (non-Javadoc)
44         * @see java.lang.Object#toString()
45         */
46        public String toString(){
47                return         "TimeSpanMeasurementImpl: ID="+this.getMeasurementID()+", " +
48                                "eventTime="+this.eventTime+", "+
49                                "timeSpan="+this.timeSpan;
50        }
51}

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