Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/MultiModule/common/src/org/litesoft/sandbox/infrastructure/client/IdPlace.java

Diff revisions: vs.
  @@ -2,18 +2,15 @@
2 2
3 3 import com.google.gwt.place.shared.*;
4 4
5 - public abstract class IdPlace extends Place implements HasPlaceId
6 - {
5 + public abstract class IdPlace extends Place implements HasPlaceId {
7 6 private String mPlaceId;
8 7
9 - protected IdPlace( Object pPlaceId )
10 - {
8 + protected IdPlace( Object pPlaceId ) {
11 9 mPlaceId = pPlaceId.toString();
12 10 }
13 11
14 12 @Override
15 - public String getPlaceId()
16 - {
13 + public String getPlaceId() {
17 14 return mPlaceId;
18 15 }
19 16 }