set path of the FileChooser to current project XML location and started saving features development, removed formatter

This commit is contained in:
2024-09-11 17:23:10 +07:00
parent d39374d8bb
commit 2fab9b13d9
14 changed files with 93 additions and 49 deletions

View File

@ -13,6 +13,8 @@ import org.xml.sax.SAXException;
import gui.MainGUI;
public class Launcher {
private static MainGUI mainGUI;
public static void main(String[] args) throws SAXException, IOException, ParserConfigurationException {
// Настройка системы логгирования
@ -31,7 +33,12 @@ public class Launcher {
rootLogger.info("Root Handler Logging level is "+lv.getName());
MainGUI gui = new MainGUI();
mainGUI = gui;
gui.setVisible(true);
}
public static MainGUI getMainGUI() {
return mainGUI;
}
}