Package org.sleuthkit.autopsy.timeline.filters

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


            getSubNodePane().getChildren().clear();
            chart.setRequiresLayout(true);
            chart.requestChartLayout();
        } else {
            //make a new filter intersecting the global filter with text(description) and type filters to restrict sub-clusters
            final Filter combinedFilter = Filter.intersect(new Filter[]{new TextFilter(event.getDescription()),
                new TypeFilter(event.getType()),
                chart.getFilteredEvents().filter().get()});

            //make a new end inclusive span (to 'filter' with)
            final Interval span = event.getSpan().withEndMillis(event.getSpan().getEndMillis() + 1000);
View Full Code Here


                    setGraphic(hBox);
                    setContentDisplay(ContentDisplay.CENTER);
                });

            } else if (item instanceof TextFilter) {
                TextFilter f = (TextFilter) item;
                TextField textField = new TextField();
                textField.setPromptText("enter filter string");
                textField.textProperty().bindBidirectional(f.textProperty());
                Platform.runLater(() -> {
                    setGraphic(textField);
                });

            } else {
View Full Code Here

TOP

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

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.