com.objogate.wl.swing.driver.FileChooserUIDriver 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 javax.swing.text.JTextComponent;
public interface FileChooserUIDriver {
void createNewFolder(String folderName);
void upOneFolder();
void home();
void desktop();
void documents();
void cancel();
void approve();
JTextComponentDriver extends JTextComponent> textBox();
void selectFile(String fileName);
void intoDir(String directoryName);
}