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
package org.litesoft.sandbox.multimodule.foundation.client.places;

import org.litesoft.sandbox.infrastructure.client.*;
import org.litesoft.sandbox.multimodule.foundation.client.*;
import org.litesoft.sandbox.multimodule.foundation.client.support.*;

public class BottomPlace extends IdPlace {
    private static final Places ID = Places.Bottom;

    private Long luckyId;

    public BottomPlace( Long data ) {
        super( ID );
        this.luckyId = data;
    }

    public Long getLuckyId() {
        return luckyId;
    }

    public static class Tokenizer extends IdTokenizer<BottomPlace> {
        public Tokenizer() {
            super( ID );
        }

        @Override
        public String getToken( BottomPlace place ) {
            return LuckyIdCodec.encode( place.getLuckyId() );
        }

        @Override
        public BottomPlace getPlace( String data ) {
            return new BottomPlace( LuckyIdCodec.decode( data ) );
        }
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModule/foundation/src/org/litesoft/sandbox/multimodule/foundation/client/places/BottomPlace.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

541 GeorgeS picture GeorgeS Mon 03 Oct, 2011 04:25:50 +0000