View Javadoc
1   package org.woehlke.computer.kurzweil.mandelbrot.config;
2   
3   import static java.io.File.separator;
4   
5   /**
6    * Mandelbrot Set drawn by a Turing Machine.
7    *
8    * (C) 2006 - 2015 Thomas Woehlke.
9    * https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html
10   * @author Thomas Woehlke
11   *
12   * Created by tw on 16.12.2019.
13   */
14  public interface ConfigProperties {
15  
16      String TITLE = "Mandelbrot Set";
17      String SUBTITLE = "Mandelbrot Set drawn by a Turing Machine";
18      String COPYRIGHT = "(c) 2019 Thomas Woehlke";
19      String WIDTH="640";
20      String HEIGHT="468";
21  
22      String BUTTONS_LABEL = "Choose Mode";
23      String BUTTONS_SWITCH = "Mandelbrot Set <-> Julia Set";
24      String BUTTONS_ZOOM = "Zoom";
25      String BUTTONS_ZOOMOUT = "Zoom out";
26  
27      String APP_PROPERTIES_FILENAME ="src" + separator
28          +"main" + separator + "resources" + separator  + "application.properties";
29  
30      String KEY = "org.woehlke.computer.kurzweil.mandelbrot.config.";
31  
32      String KEY_TITLE = KEY + "title";
33      String KEY_SUBTITLE = KEY + "subtitle";
34      String KEY_COPYRIGHT = KEY + "copyright";
35      String KEY_WIDTH = KEY + "width";
36      String KEY_HEIGHT = KEY + "height";
37  
38      String KEY_BUTTONS_LABEL = KEY + "buttons.label";
39      String KEY_BUTTONS_SWITCH = KEY + "buttons.switch";
40      String KEY_BUTTONS_ZOOM = KEY + "buttons.zoom";
41      String KEY_BUTTONS_ZOOMOUT = KEY + "buttons.zoomout";
42  }