1 package org.woehlke.computer.kurzweil;
2
3 import org.woehlke.computer.kurzweil.application.ComputerKurzweilProperties;
4 import org.woehlke.computer.kurzweil.tabs.mandelbrot2julia.Mandelbrot2JuliaTab;
5
6 import java.io.File;
7 import java.net.URL;
8
9
10
11
12
13
14
15
16 public class Mandelbrot2JuliaApplication {
17
18 private Mandelbrot2JuliaApplication() {
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 Mandelbrot2JuliaTablbrot2julia/Mandelbrot2JuliaTab.html#Mandelbrot2JuliaTab">Mandelbrot2JuliaTab frame = new Mandelbrot2JuliaTab(properties);
24 }
25
26
27
28
29
30 public static void main(String[] args) {
31 Mandelbrot2JuliaApplicationion.html#Mandelbrot2JuliaApplication">Mandelbrot2JuliaApplication application = new Mandelbrot2JuliaApplication();
32 }
33 }