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

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

public class HomePlace extends IdPlace
{
    private static final Places ID = Places.Home;

    public HomePlace()
    {
        super( ID );
    }

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

        @Override
        public String getToken( HomePlace place )
        {
            return "";
        }

        @Override
        public HomePlace getPlace( String data )
        {
            return new HomePlace();
        }
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModule/foundation/src/org/litesoft/sandbox/multimodule/foundation/client/places/HomePlace.java

Diff revisions: vs.
Revision Author Commited Message
548 Diff Diff GeorgeS picture GeorgeS Mon 10 Oct, 2011 19:08:21 +0000
541 GeorgeS picture GeorgeS Mon 03 Oct, 2011 04:25:50 +0000