Package com.google.collide.client.history.HistoryUtils

Examples of com.google.collide.client.history.HistoryUtils.ValueChangeListener


  static void setUpPlaces(AppContext context) {
    RootPlace.PLACE.registerChildHandler(
        WorkspacePlace.PLACE, new WorkspacePlaceNavigationHandler(context), true);

    // Back/forward buttons or manual manipulation of the hash.
    HistoryUtils.addValueChangeListener(new ValueChangeListener() {
      @Override
      public void onValueChanged(String historyString) {
        replayHistory(HistoryUtils.parseHistoryString(historyString));
      }
    });
View Full Code Here

TOP

Related Classes of com.google.collide.client.history.HistoryUtils.ValueChangeListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.