Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -4,21 +4,18 @@
4 4 import org.litesoft.security.*;
5 5 import org.litesoft.uispecification.*;
6 6
7 - public class ChangePasswordFactory<T extends SecurityUserView<T>> extends DialogViewFactory
8 - {
7 + public class ChangePasswordFactory<T extends SecurityUserView<T>> extends DialogViewFactory {
9 8 private String mSection;
10 9 private ViewDef mViewDef;
11 10
12 - public ChangePasswordFactory( String pSection, ViewDef pViewDef )
13 - {
11 + public ChangePasswordFactory( String pSection, ViewDef pViewDef ) {
14 12 super( pViewDef );
15 13 mSection = pSection;
16 14 mViewDef = pViewDef;
17 15 }
18 16
19 17 @Override
20 - public DialogView createDialog( ClientContext pClientContext, Object pParams )
21 - {
18 + public DialogView createDialog( ClientContext pClientContext, Object pParams ) {
22 19 return new ChangePassword<T>( mSection, mViewDef );
23 20 }
24 21 }