EMMA Coverage Report (generated Tue Dec 18 20:38:46 CET 2007)
[all classes][cz.vutbr.feec.session.feedback]

COVERAGE SUMMARY FOR SOURCE FILE [FeedbackSession.java]

nameclass, %method, %block, %line, %
FeedbackSession.java0%   (0/1)0%   (0/3)0%   (0/50)0%   (0/17)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FeedbackSession0%   (0/1)0%   (0/3)0%   (0/50)0%   (0/17)
FeedbackSession (InetAddress, int): void 0%   (0/1)0%   (0/30)0%   (0/9)
startSession (): void 0%   (0/1)0%   (0/10)0%   (0/4)
stopSession (): void 0%   (0/1)0%   (0/10)0%   (0/4)

1package cz.vutbr.feec.session.feedback;
2 
3import java.net.InetAddress;
4import java.net.SocketException;
5 
6public class FeedbackSession extends FeedbackSessionStatus {
7        private static final int DEFAULT_PERIOD = 5000; 
8        
9        public FeedbackSession(InetAddress feedbackAddress, int feedbackPort) {
10                super();
11                try {
12                        inMulticast = new ThreadInMulticast();
13                        inUnicast = new ThreadInUnicast(feedbackPort);
14                        outUnicast = new ThreadOut(feedbackAddress, feedbackPort, DEFAULT_PERIOD);
15                } catch (SocketException e) {
16                        e.printStackTrace();
17                        System.exit(-1);
18                }
19                initThread();
20        }
21 
22        @Override
23        public void startSession() {
24                inMulticast.startThread();
25                inUnicast.startThread();
26                outUnicast.startThread();
27                
28        }
29 
30        @Override
31        public void stopSession() {
32                inMulticast.stopThread();
33                inUnicast.stopThread();
34                outUnicast.stopThread();
35                
36        }
37}

[all classes][cz.vutbr.feec.session.feedback]
EMMA 2.0.5312 EclEmma Fix 1 (C) Vladimir Roubtsov