Clover Coverage Report - KS LUM 1.3.0-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Apr 28 2011 06:51:40 EDT
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
2   26   2   1
0   17   1   1
2     1  
2    
 
  AddSpecializationEvent       Line # 9 2 0% 2 4 0% 0.0
  AddSpecializationEvent.Handler       Line # 23 0 - 0 0 - -1.0
 
No Tests
 
1    package org.kuali.student.lum.program.client.events;
2   
3    import com.google.gwt.event.shared.EventHandler;
4    import com.google.gwt.event.shared.GwtEvent;
5   
6    /**
7    * @author Igor
8    */
 
9    public class AddSpecializationEvent extends GwtEvent<AddSpecializationEvent.Handler> {
10   
11    public static Type<Handler> TYPE = new Type<Handler>();
12   
 
13  0 toggle @Override
14    public Type<Handler> getAssociatedType() {
15  0 return TYPE;
16    }
17   
 
18  0 toggle @Override
19    protected void dispatch(Handler handler) {
20  0 handler.onEvent(this);
21    }
22   
 
23    public static interface Handler extends EventHandler {
24    void onEvent(AddSpecializationEvent event);
25    }
26    }