View Javadoc
1   package org.woehlke.computer.kurzweil.simulated.evolution.view.layouts;
2   
3   import java.awt.*;
4   import java.io.Serializable;
5   
6   /**
7    * © 2006 - 2008 Thomas Woehlke.
8    * @author Thomas Woehlke
9    *
10   * @see <a href="https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html">Blog Article</a>
11   * @see <a href="https://github.com/Computer-Kurzweil/simulated-evolution">Github Repository</a>
12   * @see <a href="https://java.woehlke.org/simulated-evolution/">Maven Project Repository</a>
13   */
14  public class FlowLayoutCenter extends FlowLayout implements Serializable {
15  
16      private static final long serialVersionUID = 242L;
17  
18      public FlowLayoutCenter() {
19          setAlignment(FlowLayout.CENTER);
20      }
21  }