Subversion Repository Public Repository

litesoft

Diff Revisions 282 vs 475 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/event/client/RowSelectionHandler.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 RowSelectionEvent} events.
22 22 */
23 - public interface RowSelectionHandler extends EventHandler {
23 + public interface RowSelectionHandler extends EventHandler
24 + {
24 25
25 - /**
26 - * Called when a {@link RowSelectionEvent} is fired.
27 - *
28 - * @param event the {@link RowSelectionEvent} that was fired
29 - */
30 - void onRowSelection(RowSelectionEvent event);
26 + /**
27 + * Called when a {@link RowSelectionEvent} is fired.
28 + *
29 + * @param event the {@link RowSelectionEvent} that was fired
30 + */
31 + void onRowSelection( RowSelectionEvent event );
31 32 }