Example usage for javax.swing BoxLayout getTarget

List of usage examples for javax.swing BoxLayout getTarget

Introduction

In this page you can find the example usage for javax.swing BoxLayout getTarget.

Prototype

public final Container getTarget() 

Source Link

Document

Returns the container that uses this layout manager.

Usage

From source file:Main.java

public static void main(String[] a) {
    JFrame frame = new JFrame("Alignment Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    String labels[] = { "--", "----", "--------", "------------" };

    JPanel container = new JPanel();
    BoxLayout layout = new BoxLayout(container, BoxLayout.Y_AXIS);
    System.out.println(layout.getTarget());
    container.setLayout(layout);/*from  ww  w .java 2  s. c  o  m*/

    for (int i = 0; i < labels.length; i++) {
        JButton button = new JButton(labels[i]);
        container.add(button);
    }

    frame.add(container, BorderLayout.CENTER);

    frame.setSize(300, 200);
    frame.setVisible(true);
}