Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/pavment/NoDataTokenizer.java

Diff revisions: vs.
  @@ -1,23 +1,23 @@
1 1 package com.temp.client.foundation.pavment;
2 2
3 - import com.google.gwt.place.shared.Place;
3 + import com.google.gwt.place.shared.*;
4 4
5 5 public class NoDataTokenizer<T extends Place> extends IdTokenizer<T> {
6 6
7 7 private T place;
8 8
9 - public NoDataTokenizer(Object pPlaceId, T place) {
10 - super(pPlaceId);
9 + public NoDataTokenizer( Object pPlaceId, T place ) {
10 + super( pPlaceId );
11 11 this.place = place;
12 12 }
13 13
14 14 @Override
15 - public final T getPlace(String token) {
15 + public final T getPlace( String token ) {
16 16 return place;
17 17 }
18 18
19 19 @Override
20 - public final String getToken(T place) {
20 + public final String getToken( T place ) {
21 21 return "";
22 22 }
23 23 }