Autopsy  3.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
UnionFilter.java
Go to the documentation of this file.
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 package org.sleuthkit.autopsy.timeline.filters;
6 
7 import javafx.collections.FXCollections;
8 import javafx.collections.ObservableList;
9 
14 abstract public class UnionFilter extends CompoundFilter{
15 
16  public UnionFilter(ObservableList<Filter> subFilters) {
17  super(subFilters);
18  }
19 
20  public UnionFilter() {
21  super(FXCollections.<Filter>observableArrayList());
22  }
23 
24 
25 }
UnionFilter(ObservableList< Filter > subFilters)

Copyright © 2012-2015 Basis Technology. Generated on: Mon Oct 19 2015
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.