Package collide.client.filetree.FileTreeModel

Examples of collide.client.filetree.FileTreeModel.RootNodeRequestCallback


     * @see FileTreeModel#requestWorkspaceNode
     */
    void requestWorkspaceNode(final FileTreeModel fileTreeModel, final PathUtil path,
        final NodeRequestCallback callback) {
      // Wait until the root node has been loaded.
      fileTreeModel.requestWorkspaceRoot(new RootNodeRequestCallback() {
        @Override
        public void onRootNodeAvailable(FileTreeNode root) {
          // Find the closest node in the tree, which might be the node we want.
          final FileTreeNode closest = root.findClosestChildNode(path);
          if (closest == null) {
View Full Code Here

TOP

Related Classes of collide.client.filetree.FileTreeModel.RootNodeRequestCallback

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.