Package com.google.collide.client.search.awesomebox.FileNameNavigationSection

Examples of com.google.collide.client.search.awesomebox.FileNameNavigationSection.FileNavItem


  private void showFiles(JsonArray<PathUtil> files) {
    // Reuse any fileNavItems that are currently out there, don't worry about
    // selection, clearSelection will be called by the AwesomeBox after this
    int i = reuseAnyExistingElements(files);
    for (; i < files.size(); i++) {
      FileNavItem item = new FileNavItem(res, currentPlace);
      item.setPath(files.get(i));
      listItems.add(item);

      sectionElement.appendChild(item.getElement());
    }
  }
View Full Code Here

TOP

Related Classes of com.google.collide.client.search.awesomebox.FileNameNavigationSection.FileNavItem

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.