Package | Description |
---|---|
org.uispec4j |
Provides classes for handling user interface components.
|
org.uispec4j.finder |
Contains utility classes for the components searches mechanism.
|
Modifier and Type | Field and Description |
---|---|
static ComponentMatcher |
ComponentMatcher.ALL |
Modifier and Type | Method and Description |
---|---|
static ComponentMatcher |
ComponentMatchers.and(ComponentMatcher... matchers)
Matches components that match all its sub-matchers.
|
static ComponentMatcher |
ComponentMatchers.componentLabelFor(String labelName)
Matches components based on labels (very useful when dealing with forms).
|
static ComponentMatcher |
ComponentMatchers.displayedNameIdentity(String reference)
Matches components whose displayed name is exactly the same as the reference.
|
static ComponentMatcher |
ComponentMatchers.displayedNameRegexp(String reference)
Matches components whose displayed name matches with the regexp reference.
|
static ComponentMatcher |
ComponentMatchers.displayedNameSubstring(String reference)
Matches components whose displayed name is a substring of the reference.
|
static <T extends Component> |
ComponentMatchers.fromClass(Class<T> swingClass)
Matches components that are instances of the class.
|
static ComponentMatcher |
ComponentMatchers.innerNameIdentity(String reference)
Matches components whose inner name is exactly the same as the reference.
|
static ComponentMatcher |
ComponentMatchers.innerNameRegexp(String reference)
Matches components whose inner name matches with the regexp reference.
|
static ComponentMatcher |
ComponentMatchers.innerNameSubstring(String reference)
Matches components whose inner name is a substring of the reference.
|
static ComponentMatcher |
ComponentMatchers.intersection(ComponentMatcher... matchers)
Deprecated.
|
static ComponentMatcher |
ComponentMatchers.not(ComponentMatcher matcher)
Matches components rejected by the inner matcher.
|
static ComponentMatcher |
ComponentMatchers.or(ComponentMatcher... matchers)
Matches components that match at least one of its sub-matchers.
|
static ComponentMatcher |
ComponentMatchers.toolTipEquals(String text) |
static ComponentMatcher |
ComponentMatchers.union(ComponentMatcher... matchers)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static ComponentMatcher |
ComponentMatchers.and(ComponentMatcher... matchers)
Matches components that match all its sub-matchers.
|
Component |
ComponentFinder.findComponent(ComponentMatcher matcher) |
Component |
ComponentFinder.getComponent(ComponentMatcher matcher) |
Component[] |
ComponentFinder.getComponents(ComponentMatcher matcher) |
static ComponentMatcher |
ComponentMatchers.intersection(ComponentMatcher... matchers)
Deprecated.
|
static ComponentMatcher |
ComponentMatchers.not(ComponentMatcher matcher)
Matches components rejected by the inner matcher.
|
static ComponentMatcher |
ComponentMatchers.or(ComponentMatcher... matchers)
Matches components that match at least one of its sub-matchers.
|
static ComponentMatcher |
ComponentMatchers.union(ComponentMatcher... matchers)
Deprecated.
|
Copyright © 2004–2016. All rights reserved.