Package com.google.collide.client.history

Examples of com.google.collide.client.history.Place


    FileTreeNode root = FileTreeNode.transform(mockDirInfo);
    model.setRoot(root);
    tree = new Tree<FileTreeNode>(view, model);

    // Create all the other objects we need, or mocks for them...
    Place place = new Place("mockPlace") {
      @Override
      public PlaceNavigationEvent<? extends Place> createNavigationEvent(
          JsonStringMap<String> decodedState) {
        return null;
      }
View Full Code Here


  public void setHeader(String id) {
    header.setInnerHTML(id);
  }
  private FileTreeSection testFileTree() {
    Place place = new Place("Generated") {
      @Override
      public PlaceNavigationEvent<? extends Place> createNavigationEvent(
          final JsonStringMap<String> decodedState) {
        return new PlaceNavigationEvent<Place>(this) {
          @Override
View Full Code Here

TOP

Related Classes of com.google.collide.client.history.Place

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.