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
22
23
24
25
26
27
28
29
30
31
32
package org.litesoft.GWT.client.view;

import org.litesoft.security.*;

import com.google.gwt.core.client.*;
import com.google.gwt.user.client.*;

public abstract class AbstractNewUserDialog<T extends SecurityUserView<T>> extends AbstractSecurityDialogView<T> {
    protected String mLogonEmail;
    protected String mPhoneNumber;
    protected T mUserView;
    protected QBEinputPanelAccessorFactory<T> mUserFieldsPanelFactory;

    public AbstractNewUserDialog( CO pCO, String pLogonEmail, String pPhoneNumber, T pUserView, QBEinputPanelAccessorFactory<T> pUserFieldsPanelFactory ) {
        super( pCO, Opaqueness.Semi, true );
        mLogonEmail = pLogonEmail;
        mPhoneNumber = pPhoneNumber;
        mUserView = pUserView;
        mUserFieldsPanelFactory = pUserFieldsPanelFactory;
    }

    @Override
    protected boolean processEnterPressedOn( String pName ) {
        Scheduler.get().scheduleDeferred( new Command() {
            @Override
            public void execute() {
                submitRequested();
            }
        } );
        return true; // Only one field. Don't care what it is.
    }
}

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

Diff revisions: vs.
Revision Author Commited Message
957 Diff Diff GeorgeS picture GeorgeS Tue 24 Jun, 2014 12:30:01 +0000

Dialog Code Shareing

955 Diff Diff GeorgeS picture GeorgeS Sun 22 Jun, 2014 18:11:25 +0000

Add Instance...

950 Diff Diff GeorgeS picture GeorgeS Thu 19 Jun, 2014 17:57:04 +0000

New Lines

948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

487 Diff Diff GeorgeS picture GeorgeS Thu 08 Sep, 2011 12:06:30 +0000

More elimination of uniqueness

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