1 package org.woehlke.computer.kurzweil.commons.layouts;
2
3 import javax.swing.*;
4 import java.awt.*;
5
6 public class LayoutCanvas extends FlowLayoutCenter {
7
8 /**
9 * Creates a layout manager that will lay out components along the
10 * given axis.
11 *
12 * @throws AWTError if the value of {@code axis} is invalid
13 */
14 public LayoutCanvas(JComponent target) {
15 //super(target);
16 }
17 }