View Javadoc
1   package org.woehlke.computer.kurzweil.conwaysgameoflive.view.layouts;
2   
3   import javax.swing.*;
4   import java.awt.*;
5   import java.io.Serializable;
6   
7   /**
8    * © 2006 - 2008 Thomas Woehlke.
9    * @author Thomas Woehlke
10   *
11   * @see <a href="https://github.com/Computer-Kurzweil/conwaysgameoflife">Github Repository</a>
12   * @see <a href="https://java.woehlke.org/conwaysgameoflife/">Maven Project Repository</a>
13   */
14  public class LayoutCanvas extends FlowLayoutCenter implements Serializable {
15  
16      static final long serialVersionUID = 242L;
17  
18      /**
19       * Creates a layout manager that will lay out components along the
20       * given axis.
21       *
22       * @throws AWTError if the value of {@code axis} is invalid
23       */
24      public LayoutCanvas(JComponent target) {
25          //super(target);
26      }
27  }