Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.litesoft.GWT.client.view;

import org.litesoft.core.*;
import org.litesoft.security.*;
import org.litesoft.uispecification.*;

public class ChangePasswordFactory<T extends SecurityUserView<T>> extends DialogViewFactory {
    private String mSection;
    private ViewDef mViewDef;

    public ChangePasswordFactory( String pSection, ViewDef pViewDef ) {
        super( pViewDef );
        mSection = pSection;
        mViewDef = pViewDef;
    }

    @Override
    public DialogView createDialog( ClientContext pClientContext, Object pParams ) {
        return new ChangePassword<T>( mSection, mViewDef );
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/ChangePasswordFactory.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

496 Diff Diff GeorgeS picture GeorgeS Sun 11 Sep, 2011 16:58:00 +0000
494 Diff Diff GeorgeS picture GeorgeS Sun 11 Sep, 2011 13:33:20 +0000
486 Diff Diff GeorgeS picture GeorgeS Tue 06 Sep, 2011 03:00:59 +0000
398 GeorgeS picture GeorgeS Mon 15 Aug, 2011 19:57:47 +0000