* @author Yoav Hakman
*/
public class ExampleSwingRunner {
public static void main(String[] args) throws IOException {
ProjectFileChooser fileChooser = new ProjectFileChooser();
fileChooser.showSelectDialog();
File selectedFile = fileChooser.getProjectFile();
if (selectedFile == null) {
return;
}