EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.codegen.simudatavisualisation.datatypes]

COVERAGE SUMMARY FOR SOURCE FILE [TimeSeries.java]

nameclass, %method, %block, %line, %
TimeSeries.java0%   (0/1)0%   (0/7)0%   (0/70)0%   (0/16)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TimeSeries0%   (0/1)0%   (0/7)0%   (0/70)0%   (0/16)
TimeSeries (String): void 0%   (0/1)0%   (0/11)0%   (0/4)
add (double, double): void 0%   (0/1)0%   (0/10)0%   (0/2)
getLabel (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getValues (): List 0%   (0/1)0%   (0/3)0%   (0/1)
setLabel (String): void 0%   (0/1)0%   (0/4)0%   (0/2)
setValues (List): void 0%   (0/1)0%   (0/4)0%   (0/2)
toString (): String 0%   (0/1)0%   (0/35)0%   (0/4)

1package de.uka.ipd.sdq.codegen.simudatavisualisation.datatypes;
2 
3import java.util.ArrayList;
4import java.util.List;
5 
6public class TimeSeries {
7        private String myLabel;
8        
9        List<TimeSeriesEntity> values = new ArrayList<TimeSeriesEntity>();
10 
11        public TimeSeries(String myLabel) {
12                super();
13                this.myLabel = myLabel;
14        }
15 
16        public String getLabel() {
17                return myLabel;
18        }
19 
20        public void setLabel(String newLabel) {
21                myLabel=newLabel;
22        }
23 
24        public List<TimeSeriesEntity> getValues() {
25                return values;
26        }
27 
28        public void setValues(List<TimeSeriesEntity> values) {
29                this.values = values;
30        }
31 
32        public void add(double x, double y) {
33                values.add(new TimeSeriesEntity(x,y));
34        }
35        
36        @Override
37        public String toString() {
38                String result = this.myLabel + "\n";
39                for (TimeSeriesEntity e : this.values) {
40                        result += e + "\n";
41                }
42                return result;
43        }
44}

[all classes][de.uka.ipd.sdq.codegen.simudatavisualisation.datatypes]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov