Subversion Repository Public Repository

litesoft

Diff Revisions 713 vs 948 for /trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/foundation/places/PlaceHome.java

Diff revisions: vs.
  @@ -2,31 +2,25 @@
2 2
3 3 import org.litesoft.GWT.client.pavsupport.*;
4 4
5 - public class PlaceHome extends IdPlace
6 - {
5 + public class PlaceHome extends IdPlace {
7 6 private static final EnumPlaces ID = EnumPlaces.Home;
8 7
9 - public PlaceHome()
10 - {
8 + public PlaceHome() {
11 9 super( ID );
12 10 }
13 11
14 - public static class Tokenizer extends IdTokenizer<PlaceHome>
15 - {
16 - public Tokenizer()
17 - {
12 + public static class Tokenizer extends IdTokenizer<PlaceHome> {
13 + public Tokenizer() {
18 14 super( ID );
19 15 }
20 16
21 17 @Override
22 - public String getToken( PlaceHome place )
23 - {
18 + public String getToken( PlaceHome place ) {
24 19 return "";
25 20 }
26 21
27 22 @Override
28 - public PlaceHome getPlace( String data )
29 - {
23 + public PlaceHome getPlace( String data ) {
30 24 return new PlaceHome();
31 25 }
32 26 }