Subversion Repository Public Repository

litesoft

Diff Revisions 954 vs 955 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/DialogViewFactory.java

Diff revisions: vs.
  @@ -1,7 +1,6 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.client.view;
3 3
4 - import org.litesoft.core.*;
5 4 import org.litesoft.uispecification.*;
6 5
7 6 public abstract class DialogViewFactory extends ViewFactory {
  @@ -9,5 +8,5 @@
9 8 super( pViewDef );
10 9 }
11 10
12 - public abstract DialogView createDialog( ClientContext pClientContext, Object pParams );
11 + public abstract DialogView createDialog( Object pParams );
13 12 }