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