Coverage Report - org.kuali.student.common.ui.client.event.ModifyActionEvent
 
Classes in this File Line Coverage Branch Coverage Complexity
ModifyActionEvent
0%
0/22
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.HasActionState;
 19  
 
 20  0
 public class ModifyActionEvent extends ActionEvent<ModifyActionHandler> implements HasActionState{
 21  0
     public static final Type<ModifyActionHandler> TYPE = new Type<ModifyActionHandler>();
 22  
     
 23  
     private ActionState actionState;
 24  0
     private String message = "Fetching";
 25  0
     private boolean acknowledgeRequired = true;
 26  
     private String id;
 27  
     
 28  0
     public ModifyActionEvent(){
 29  0
     }
 30  
     
 31  
     public ModifyActionEvent(String id){
 32  0
         this();
 33  0
         this.id = id;
 34  0
     }
 35  
     
 36  
     @Override
 37  
     protected void dispatch(ModifyActionHandler handler) {
 38  0
         handler.onModify(this);
 39  
         
 40  0
     }
 41  
 
 42  
     @Override
 43  
     public com.google.gwt.event.shared.GwtEvent.Type<ModifyActionHandler> getAssociatedType() {
 44  
 
 45  0
         return TYPE;
 46  
     }
 47  
 
 48  
     public void setActionState(ActionState state){
 49  0
         this.actionState = state;
 50  0
     }
 51  
     
 52  
     /**
 53  
      * @see org.kuali.student.common.ui.client.mvc.HasActionState#getActionState()
 54  
      */
 55  
     @Override
 56  
     public ActionState getActionState() {
 57  0
         return this.actionState;
 58  
     }
 59  
     
 60  
     public String getMessage(){
 61  0
         return message;
 62  
     }
 63  
 
 64  
     public boolean isAcknowledgeRequired() {
 65  0
         return acknowledgeRequired;
 66  
     }
 67  
 
 68  
     public void setAcknowledgeRequired(boolean acknowledgeRequired) {
 69  0
         this.acknowledgeRequired = acknowledgeRequired;
 70  0
     }
 71  
 
 72  
     public String getId() {
 73  0
         return id;
 74  
     }
 75  
 
 76  
     public void setId(String id) {
 77  0
         this.id = id;
 78  0
     }
 79  
 }