Class ComponentFinder<T>

java.lang.Object
overit.geocallapp.utilities.ux.ui.util.ComponentFinder<T>

public class ComponentFinder<T> extends Object
Usage examples Finds all TableView instances recursively starting from a container. List<TableView> allTV = ComponentFinder.findAll(TableView.class).in(this); Finds all child TableView instances of a container. List<TableView> childTV = ComponentFinder.findChild(TableView.class).in(this);
Since:
19.0
  • Field Details

    • type

      protected Class<T> type
    • deep

      protected boolean deep
  • Constructor Details

    • ComponentFinder

      protected ComponentFinder(Class<T> type, boolean deep)
      Non istanziare direttamente!
  • Method Details