Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/util/WindowCloseImpl.java

Diff revisions: vs.
  @@ -6,17 +6,14 @@
6 6 /**
7 7 * Default implementation of {@link WindowClose}, based on {@link Window}.
8 8 */
9 - public class WindowCloseImpl implements WindowClose
10 - {
9 + public class WindowCloseImpl implements WindowClose {
11 10 @Override
12 - public HandlerRegistration addWindowClosingHandler( Window.ClosingHandler handler )
13 - {
11 + public HandlerRegistration addWindowClosingHandler( Window.ClosingHandler handler ) {
14 12 return Window.addWindowClosingHandler( handler );
15 13 }
16 14
17 15 @Override
18 - public boolean confirm( String message )
19 - {
16 + public boolean confirm( String message ) {
20 17 return Window.confirm( message );
21 18 }
22 19 }