EMMA Coverage Report (generated Thu Jan 20 11:39:44 EST 2011)
[all classes][com.hammurapi.eventbus]

COVERAGE SUMMARY FOR SOURCE FILE [EventDispatchMultiCauseException.java]

nameclass, %method, %block, %line, %
EventDispatchMultiCauseException.java0%   (0/1)0%   (0/2)0%   (0/9)0%   (0/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class EventDispatchMultiCauseException0%   (0/1)0%   (0/2)0%   (0/9)0%   (0/4)
EventDispatchMultiCauseException (Collection): void 0%   (0/1)0%   (0/6)0%   (0/3)
getCauses (): Collection 0%   (0/1)0%   (0/3)0%   (0/1)

1package com.hammurapi.eventbus;
2 
3import java.util.Collection;
4 
5/**
6 * This exception is thrown from Handle.join() in the case of multiple exceptions thrown during dispatching 
7 * of the event to handlers.
8 * @author Pavel Vlasov
9 *
10 */
11public class EventDispatchMultiCauseException extends EventBusException {
12 
13        private Collection<Exception> causes;
14 
15        public EventDispatchMultiCauseException(Collection<Exception> causes) {
16                this.causes = causes;
17        }
18        
19        public Collection<Exception> getCauses() {
20                return causes;
21        }
22 
23}

[all classes][com.hammurapi.eventbus]
EMMA 2.0.5312 EclEmma Fix 2 (C) Vladimir Roubtsov