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.sandbox.multimodule.client.common.pavsupport;

import com.google.gwt.place.shared.*;

public abstract class IdPlace extends Place implements HasPlaceId
{
    private String mPlaceId;

    protected IdPlace( Object pPlaceId )
    {
        mPlaceId = pPlaceId.toString();
    }

    @Override
    public String getPlaceId()
    {
        return mPlaceId;
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/common/pavsupport/IdPlace.java

Diff revisions: vs.
Revision Author Commited Message
582 GeorgeS picture GeorgeS Mon 14 Nov, 2011 19:55:23 +0000

Single Dir Based MultiModule