1 package org.woehlke.computer.kurzweil;
2
3 import org.woehlke.computer.kurzweil.application.ComputerKurzweilProperties;
4 import org.woehlke.computer.kurzweil.tabs.wator.WatorTab;
5
6 import java.io.File;
7 import java.net.URL;
8
9
10
11
12
13
14
15
16 public class WatorApplication {
17
18 private WatorApplication() {
19 String configFileName = "/application.yml";
20 URL fileUrl = getClass().getResource(configFileName);
21 File configFile = new File(fileUrl.getFile());
22 ComputerKurzweilProperties properties = ComputerKurzweilProperties.propertiesFactory(configFile);
23 WatorTab/tabs/wator/WatorTab.html#WatorTab">WatorTab frame = new WatorTab(properties);
24 }
25
26
27
28
29
30 public static void main(String[] args) {
31 WatorApplicationion.html#WatorApplication">WatorApplication application = new WatorApplication();
32 }
33 }