Subversion Repository Public Repository

litesoft

Diff Revisions 282 vs 475 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/event/client/RowUnhighlightHandler.java

Diff revisions: vs.
  @@ -15,17 +15,18 @@
15 15 */
16 16 package com.google.gwt.gen2.table.event.client;
17 17
18 - import com.google.gwt.gen2.event.shared.EventHandler;
18 + import com.google.gwt.gen2.event.shared.*;
19 19
20 20 /**
21 21 * Handler interface for {@link RowUnhighlightEvent} events.
22 22 */
23 - public interface RowUnhighlightHandler extends EventHandler {
23 + public interface RowUnhighlightHandler extends EventHandler
24 + {
24 25
25 - /**
26 - * Called when a {@link RowUnhighlightEvent} is fired.
27 - *
28 - * @param event the {@link RowUnhighlightEvent} that was fired
29 - */
30 - void onRowUnhighlight(RowUnhighlightEvent event);
26 + /**
27 + * Called when a {@link RowUnhighlightEvent} is fired.
28 + *
29 + * @param event the {@link RowUnhighlightEvent} that was fired
30 + */
31 + void onRowUnhighlight( RowUnhighlightEvent event );
31 32 }