Package org.sleuthkit.autopsy.timeline.explorernodes

Examples of org.sleuthkit.autopsy.timeline.explorernodes.EventRootNode


    public final void refresh() {

        Set<Long> newSelectedEventIDs = new HashSet<>(controller.getSelectedEventIDs());
        if (selectedEventIDs.equals(newSelectedEventIDs) == false) {
            selectedEventIDs = newSelectedEventIDs;
            final EventRootNode root = new EventRootNode(
                    NbBundle.getMessage(this.getClass(), "Timeline.node.root"), selectedEventIDs,
                    filteredEvents);

            //this must be in edt or exception is thrown
            SwingUtilities.invokeLater(() -> {
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.timeline.explorernodes.EventRootNode

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.