Class ComponentFinder<T>
java.lang.Object
overit.geocallapp.utilities.ux.ui.util.ComponentFinder<T>
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 Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedComponentFinder(Class<T> type, boolean deep) Non istanziare direttamente! -
Method Summary
-
Field Details
-
type
-
deep
protected boolean deep
-
-
Constructor Details
-
ComponentFinder
Non istanziare direttamente!
-
-
Method Details
-
findAll
-
findChild
-
in
-
in
-
visit
-