| 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 |  |  import org.kuali.student.common.ui.client.mvc.DataModel; | 
  | 6 |  |   | 
  | 7 |  |   | 
  | 8 |  |   | 
  | 9 |  |   | 
  | 10 | 0 |  public class ModelLoadedEvent extends GwtEvent<ModelLoadedEvent.Handler> { | 
  | 11 |  |   | 
  | 12 | 0 |      public static Type<Handler> TYPE = new Type<Handler>(); | 
  | 13 |  |   | 
  | 14 |  |      private DataModel model; | 
  | 15 |  |   | 
  | 16 | 0 |      public ModelLoadedEvent(DataModel model) { | 
  | 17 | 0 |          this.model = model; | 
  | 18 | 0 |      } | 
  | 19 |  |   | 
  | 20 |  |   | 
  | 21 |  |      @Override | 
  | 22 |  |      public Type<Handler> getAssociatedType() { | 
  | 23 | 0 |          return TYPE; | 
  | 24 |  |      } | 
  | 25 |  |   | 
  | 26 |  |      @Override | 
  | 27 |  |      protected void dispatch(Handler handler) { | 
  | 28 | 0 |          handler.onEvent(this); | 
  | 29 | 0 |      } | 
  | 30 |  |   | 
  | 31 |  |      public DataModel getModel() { | 
  | 32 | 0 |          return model; | 
  | 33 |  |      } | 
  | 34 |  |   | 
  | 35 |  |      public static interface Handler extends EventHandler { | 
  | 36 |  |          void onEvent(ModelLoadedEvent event); | 
  | 37 |  |      } | 
  | 38 |  |  } |