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
package org.litesoft.sandbox.infrastructure.client;

/**
 * Simple Activity implementation that is always willing to stop, and does
 * nothing onStop and onCancel.
 */
public abstract class AbstractActivity implements Activity {
    @Override
    public String mayStop() {
        return null;
    }

    @Override
    public void onCancel() {
    }

    @Override
    public void onStop() {
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModule/common/src/org/litesoft/sandbox/infrastructure/client/AbstractActivity.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

544 GeorgeS picture GeorgeS Fri 07 Oct, 2011 12:28:12 +0000