Package com.google.collide.client.workspace

Examples of com.google.collide.client.workspace.FileTreeUiController


    FileTreeNodeDataAdapter nodeDataAdapter = new FileTreeNodeDataAdapter();
    Tree<FileTreeNode> tree = Tree.create(
        view.treeView, nodeDataAdapter, nodeRenderer, appContext.getResources());

    // Create the UI controller.
    FileTreeUiController treeUiController = FileTreeUiController.create(place,
        fileTreeModel,
        tree,
        appContext,
        debuggingModelController);

    // attach a file tree menu to the button
    treeUiController.getContextMenuController()
        .createMenuDropdown(Elements.asJsElement(view.menuButton));

    // Instantiate and return the FileTreeSection.
    FileTreeSection fileTreeSection =
        new FileTreeSection(view, tree, treeUiController, fileTreeModel);
View Full Code Here

TOP

Related Classes of com.google.collide.client.workspace.FileTreeUiController

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.