Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/event/HasUpdateHandlers.java

Diff revisions: vs.
  @@ -1,10 +1,9 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.event;
3 3
4 - import com.google.gwt.event.shared.HandlerRegistration;
5 - import com.google.gwt.event.shared.HasHandlers;
4 + import com.google.gwt.event.shared.*;
6 5
7 6 public interface HasUpdateHandlers extends HasHandlers
8 7 {
9 - HandlerRegistration addUpdateHandler(UpdateHandler handler);
8 + HandlerRegistration addUpdateHandler( UpdateHandler handler );
10 9 }