Package org.sleuthkit.autopsy.timeline.filters

Examples of org.sleuthkit.autopsy.timeline.filters.CompoundFilter


        expandedProperty().addListener((Observable observable) -> {
            expansionMap.put(f.getDisplayName(), isExpanded());
        });

        if (f instanceof CompoundFilter) {
            CompoundFilter cf = (CompoundFilter) f;

            for (Filter af : cf.getSubFilters()) {
                getChildren().add(new FilterTreeItem(af, expansionMap));
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.timeline.filters.CompoundFilter

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.