com.objogate.wl.swing.driver.ListDriver 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.driver;
import java.awt.Component;
import org.hamcrest.Matcher;
public interface ListDriver {
void selectItem(int index);
void selectItem(Matcher extends Component> item);
void hasSelectedIndex(int index);
}