com.objogate.wl.swing.ComponentSelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windowlicker-swing Show documentation
Show all versions of windowlicker-swing Show documentation
This is the Windowlicker Swing library.
The newest version!
package com.objogate.wl.swing;
import java.awt.Component;
/**
* A ComponentFinder that is satisfied only if it finds a single, matching component.
*/
public interface ComponentSelector extends ComponentFinder {
T component();
}