Package org.sleuthkit.autopsy.directorytree

Examples of org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent


    }

    @Override
    public JComponent[] getMenuPresenters() {
        List<String> dataResultsIds = DataResultTopComponent.getActiveComponentIds();
        DirectoryTreeTopComponent directoryTree = DirectoryTreeTopComponent.findInstance();
        DataResultTopComponent directoryListing = directoryTree.getDirectoryListing();



        List<JComponent> menuItems = new ArrayList<JComponent>();
       
        // add the main "DirectoryListing"
        JMenuItem dlItem = new JMenuItem(directoryListing.getName());
        dlItem.addActionListener(new OpenTopComponentAction(directoryListing));
        dlItem.setEnabled(directoryTree.isOpened());

        menuItems.add(dlItem);


        // add search results if there are any
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.directorytree.DirectoryTreeTopComponent

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.