com.objogate.wl.swing.internal.query.TextQuery 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.internal.query;
import org.hamcrest.Matcher;
public interface TextQuery {
/**
* Check if a component has matching text.
*
* @param matcher What to match for
*/
void hasText(Matcher matcher);
}