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

COVERAGE SUMMARY FOR SOURCE FILE [LocalEventBus.java]

nameclass, %method, %block, %line, %
LocalEventBus.java100% (2/2)100% (2/2)100% (7/7)100% (3/3)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class LocalEventBus100% (1/1)100% (1/1)100% (4/4)100% (2/2)
LocalEventBus (LocalEventBus$Config): void 100% (1/1)100% (4/4)100% (2/2)
     
class LocalEventBus$Config100% (1/1)100% (1/1)100% (3/3)100% (1/1)
LocalEventBus$Config (): void 100% (1/1)100% (3/3)100% (1/1)

1package com.hammurapi.eventbus.local;
2 
3 
4/**
5 * Local event bus which store generic parameter is bound to LocalEventStore.
6 * @author Pavel Vlasov
7 *
8 * @param <E>
9 * @param <P>
10 * @param <C>
11 */
12public class LocalEventBus<E, P extends Comparable<P>, C> extends LocalEventBusBase<E,P,C,LocalEventStore<E,P,C>> {
13 
14        public LocalEventBus(Config<E, P, C> config) {
15                super(config);
16        }
17 
18        /**
19         * Configurator with bound store generic parameter.
20         * @author Pavel Vlasov
21         *
22         * @param <E>
23         * @param <P>
24         * @param <C>
25         */
26        public static class Config<E, P extends Comparable<P>, C> extends LocalEventBusBase.Config<E, P, C, LocalEventStore<E,P,C>> {
27                
28        }
29 
30 
31}

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