Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
NavigationEvent |
|
| 1.0;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.mvc.history; | |
17 | ||
18 | import org.kuali.student.common.ui.client.mvc.UncheckedApplicationEvent; | |
19 | ||
20 | import com.google.gwt.user.client.ui.Widget; | |
21 | ||
22 | /** | |
23 | * Event that is fired when a history token should be logged on the history stack | |
24 | * | |
25 | * @author Kuali Student Team | |
26 | * | |
27 | */ | |
28 | 0 | public class NavigationEvent extends UncheckedApplicationEvent<NavigationEventHandler>{ |
29 | 0 | public static final Type<NavigationEventHandler> TYPE = new Type<NavigationEventHandler>(); |
30 | ||
31 | private final Widget originatingWidget; | |
32 | ||
33 | 0 | public NavigationEvent(final Widget originatingWidget) { |
34 | 0 | this.originatingWidget = originatingWidget; |
35 | 0 | } |
36 | ||
37 | @Override | |
38 | protected void dispatch(NavigationEventHandler handler) { | |
39 | 0 | handler.onNavigationEvent(this); |
40 | 0 | } |
41 | ||
42 | @Override | |
43 | public com.google.gwt.event.shared.GwtEvent.Type<NavigationEventHandler> getAssociatedType() { | |
44 | 0 | return TYPE; |
45 | } | |
46 | ||
47 | public Widget getOriginatingWidget() { | |
48 | 0 | return originatingWidget; |
49 | } | |
50 | ||
51 | } |