View Javadoc

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.mvc;
17  
18  import com.google.gwt.event.shared.GwtEvent;
19  
20  /**
21   * Base event type for events fired between controllers and views. ApplicationEvent behavior is "checked", in that it does
22   * not automatically propagate between controller tiers. To propagate an ApplicationEvent, code must be written in the
23   * controller to manually relay it to the parent controller. For events that automatically propagate to the topmost
24   * controller, see UncheckedApplicationEvent
25   * 
26   * @author Kuali Student Team
27   * @param <H>
28   *            The type of handler associated with the event
29   */
30  @Deprecated
31  public abstract class ApplicationEvent<H extends ApplicationEventHandler> extends GwtEvent<H> {
32  
33  }