Package org.sleuthkit.autopsy.timeline.filters

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


        return repo.getEventById(eventID);
    }

    public Set<Long> getEventIDs(Interval timeRange, Filter filter) {
        final Interval overlap;
        final IntersectionFilter intersect;
        synchronized (this) {
            overlap = getSpanningInterval().overlap(timeRange);
            intersect = Filter.intersect(new Filter[]{filter, requestedFilter.get()});
        }
        return repo.getEventIDs(overlap, intersect);
View Full Code Here

TOP

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

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.