Examples of TextFilter


Examples of org.jamesii.gui.utils.TextFilter

    // 4, new IncrementModifierInteger()));
    // experiment.setSubLevel(nextLevel);
    //
    model =
        new FilteredTreeModel<>(new ExperimentVariablesTreeModel(experiment),
            new TextFilter());
    // addTreeSelectionListener(new TreeSelectionListener() {
    // @Override
    // public void valueChanged(TreeSelectionEvent e) {
    // selectedNodeInfo = getSelectedNode();
    // logAction.setEnabled(selectedNodeInfo != null);
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

    setTitle("System Information");

    model =
        new FilteredTreeModel<>(new SystemInfoTreeModel(info, systemName),
            new TextFilter());
    // addTreeSelectionListener(new TreeSelectionListener() {
    // @Override
    // public void valueChanged(TreeSelectionEvent e) {
    // selectedNodeInfo = getSelectedNode();
    // logAction.setEnabled(selectedNodeInfo != null);
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

   * @param contribution
   *          the vies's contribution
   */
  public PlugInView(Contribution contribution) {
    super("PlugIn Inspector", new DefaultTreeModel(null), contribution, null);
    model = new FilteredTreeModel<>(new PlugInTreeModel(), new TextFilter());
    setTreeModel(new SortedTreeModel(model));
  }
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

  public PlugInView(String subject, List<IPluginData> plugins,
      Contribution contribution) {
    super(subject + ":PlugIn Inspector", new DefaultTreeModel(null),
        contribution, null);
    model =
        new FilteredTreeModel<>(new PlugInTreeModel(plugins), new TextFilter());
    setTreeModel(new SortedTreeModel(model));
  }
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

  public ExperimentView(BaseExperiment experiment, Contribution contribution) {
    super("Experiment view", new DefaultTreeModel(null), contribution, null);

    model =
        new FilteredTreeModel<>(new ExperimentTreeModel(experiment),
            new TextFilter());
    // addTreeSelectionListener(new TreeSelectionListener() {
    // @Override
    // public void valueChanged(TreeSelectionEvent e) {
    // selectedNodeInfo = getSelectedNode();
    // logAction.setEnabled(selectedNodeInfo != null);
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

  }

  @Override
  protected FilteredTreeModel<String> createModel() {
    return new FilteredTreeModel<>(new ServiceTreeModel(
        (IMasterServer) getServer()), new TextFilter());
  }
View Full Code Here

Examples of org.jamesii.gui.utils.TextFilter

  }

  @Override
  protected FilteredTreeModel<String> createModel() {
    return new FilteredTreeModel<>(new SimulationTreeModel(
        (ISimulationServer) getServer()), new TextFilter());
  }
View Full Code Here

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

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

                    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
Copyright © 2018 www.massapi.com. 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.