Subversion Repository Public Repository

litesoft

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

import org.litesoft.commonfoundation.base.*;

import com.google.gwt.user.client.*;
import com.googlecode.mgwt.dom.client.event.tap.*;

public class CommandTapHandler implements TapHandler {
    private final Command mOnTapCommand;

    public CommandTapHandler( Command pOnTapCommand ) {
        mOnTapCommand = Confirm.isNotNull( "OnTapCommand", pOnTapCommand );
    }

    @Override
    public void onTap( TapEvent event ) {
        mOnTapCommand.execute();
    }
}

Commits for litesoft/trunk/mobileGWT/mgwtPlus/src/org/litesoft/mgwt/client/CommandTapHandler.java

Diff revisions: vs.
Revision Author Commited Message
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

939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

804 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 12:48:51 +0000
753 GeorgeS picture GeorgeS Sun 08 Jul, 2012 17:02:17 +0000

!