Coverage Report - org.kuali.student.common.ui.client.event.SaveEvent
 
Classes in this File Line Coverage Branch Coverage Complexity
SaveEvent
0%
0/11
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.ui.client.event;
 17  
 
 18  
 import org.kuali.student.common.ui.client.mvc.ApplicationEvent;
 19  
 
 20  
 /**
 21  
  * A save event with user defined save types. This allows a single widget to handle
 22  
  * different types of save events without having to create new events and handlers. 
 23  
  * 
 24  
  * @author Kuali Student Team
 25  
  *
 26  
  */
 27  0
 public class SaveEvent<SaveType extends Enum<?>> extends ApplicationEvent<SaveHandler>{
 28  0
     public static final Type<SaveHandler> TYPE = new Type<SaveHandler>();
 29  
     
 30  
     private SaveType saveType;
 31  
     
 32  0
     public SaveEvent(){
 33  
         
 34  0
     }
 35  
     
 36  0
     public SaveEvent(SaveType saveType){
 37  0
         this.saveType = saveType;
 38  0
     }
 39  
     
 40  
     @Override
 41  
     protected void dispatch(SaveHandler handler) {
 42  0
         handler.onSave(this);
 43  0
     }
 44  
 
 45  
     @Override
 46  
     public Type<SaveHandler> getAssociatedType() {
 47  0
         return TYPE;
 48  
     }
 49  
     
 50  
     public SaveType getSaveType(){
 51  0
         return this.saveType;
 52  
     }
 53  
     
 54  
 }