Subversion Repository Public Repository

litesoft

Diff Revisions 557 vs 559 for /trunk/GWT_Sandbox/MultiModule/common/src/org/litesoft/sandbox/infrastructure/client/PlaceActivityManager.java

Diff revisions: vs.
  @@ -9,7 +9,7 @@
9 9 import com.google.gwt.user.client.*;
10 10 import com.google.gwt.user.client.ui.*;
11 11
12 - public class PlaceActivityManager<CommonActivityParam extends CommonActivityParameter> implements PlaceChanger
12 + public class PlaceActivityManager<CommonActivityParam extends CommonActivityParameter> implements PlaceChangerWithCurrentUrlSupport
13 13 {
14 14 private static final Logger LOGGER = LoggerFactory.getLogger( PlaceActivityManager.class );
15 15
  @@ -62,10 +62,12 @@
62 62 }
63 63
64 64 /**
65 - * Handle the current history token. Typically called at application start, to
66 - * ensure bookmark launches work.
65 + * Go to the Current URL (current history token).
66 + * <p/>
67 + * Typically called at application start, to ensure bookmark launches work.
67 68 */
68 - public void handleCurrentHistory()
69 + @Override
70 + public void goToCurrentUrl()
69 71 {
70 72 handleHistoryToken( mHistorian.getToken() );
71 73 }