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

COVERAGE SUMMARY FOR SOURCE FILE [Triple.java]

nameclass, %method, %block, %line, %
Triple.java0%   (0/1)0%   (0/8)0%   (0/36)0%   (0/16)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class Triple0%   (0/1)0%   (0/8)0%   (0/36)0%   (0/16)
Triple (): void 0%   (0/1)0%   (0/3)0%   (0/2)
Triple (Object, Object, Object): void 0%   (0/1)0%   (0/12)0%   (0/5)
getFirst (): Object 0%   (0/1)0%   (0/3)0%   (0/1)
getSecond (): Object 0%   (0/1)0%   (0/3)0%   (0/1)
getThird (): Object 0%   (0/1)0%   (0/3)0%   (0/1)
setFirst (Object): void 0%   (0/1)0%   (0/4)0%   (0/2)
setSecond (Object): void 0%   (0/1)0%   (0/4)0%   (0/2)
setThird (Object): void 0%   (0/1)0%   (0/4)0%   (0/2)

1package de.uka.ipd.sdq.dsexplore.helper;
2 
3public class Triple<T,S,R> {
4        
5        private T first;
6        private S second;
7        private R third;
8        
9        public Triple(){
10                super();
11        }
12        
13        public Triple(T first, S second, R third) {
14                super();
15                this.first = first;
16                this.second = second;
17                this.third = third;
18        }
19        
20        public T getFirst() {
21                return first;
22        }
23        public void setFirst(T first) {
24                this.first = first;
25        }
26        public S getSecond() {
27                return second;
28        }
29        public void setSecond(S second) {
30                this.second = second;
31        }
32        public R getThird() {
33                return third;
34        }
35        public void setThird(R third) {
36                this.third = third;
37        }
38        
39        
40 
41}

[all classes][de.uka.ipd.sdq.dsexplore.helper]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov