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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package org.litesoft.datt.client.support;

import org.litesoft.bo.views.*;
import org.litesoft.datt.client.boviews.*;

public class StoryScreenViewHelper {
    public static boolean assertStoryURL( StoryFindable pStoryFindable, ObjectURL pStoryURL ) {
        if ( pStoryURL == null ) {
            pStoryFindable.backToHome( "No Story Selected" );
            return false;
        }
        return true;
    }

    public static boolean requestRequiredStory( final StoryFindable pStoryFindable, ObjectURL pStoryURL, final Integer pRequestID ) {
        if ( !assertStoryURL( pStoryFindable, pStoryURL ) ) {
            return false;
        }
        StoryViewDataProvider.getInstance().requestRow( pStoryURL, new FetchRowDataProviderCallBack<StoryView>() {
            @Override
            public void success( StoryView pRow ) {
                if ( pRow != null ) {
                    pStoryFindable.foundStory( pRow, pRequestID );
                    return;
                }
                error( "Story Not Found" );
            }

            @Override
            public void error( String pError ) {
                pStoryFindable.backToHome( pError );
            }
        } );
        return true;
    }

    public static void requestOptionalStory( final StoryFindable pStoryFindable, ObjectURL pStoryURL, final Integer pRequestID ) {
        if ( pStoryURL != null ) {
            StoryViewDataProvider.getInstance().requestRow( pStoryURL, new FetchRowDataProviderCallBack<StoryView>() {
                @Override
                public void success( StoryView pRow ) {
                    if ( pRow != null ) {
                        pStoryFindable.foundStory( pRow, pRequestID );
                    }
                }

                @Override
                public void error( String pError ) {
                    pStoryFindable.getStatusMessageSinc().setErrorMessage( pError );
                }
            } );
        }
    }
}

Commits for litesoft/trunk/Java/DATT/src/org/litesoft/datt/client/support/StoryScreenViewHelper.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

496 Diff Diff GeorgeS picture GeorgeS Sun 11 Sep, 2011 16:58:00 +0000
430 GeorgeS picture GeorgeS Sat 20 Aug, 2011 19:46:21 +0000