View Javadoc
1   package org.woehlke.computer.kurzweil.commons.ui;
2   
3   import javax.swing.*;
4   import java.awt.*;
5   
6   /**
7    * Mandelbrot Set drawn by a Turing Machine.
8    *
9    * (C) 2006 - 2015 Thomas Woehlke.
10   * https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html
11   * @author Thomas Woehlke
12   *
13   * Created by tw on 16.12.2019.
14   */
15  public class PanelCopyright extends JPanel {
16  
17    public PanelCopyright(String subtitle) {
18      this.setLayout(new FlowLayout());
19      this.add(new JLabel(subtitle));
20    }
21  
22  }