import javax.swing.*;

public class CheckLabel0{
  public static void main(String args[]){
     JFrame frame=new JFrame("CheckLabel0");
     frame.setSize(300,300);
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     JLabel l1=new JLabel("Label 1");
     JLabel l2=new JLabel("Label 2");
     JLabel l3=new JLabel("Label 3");
     JBox body=
       JBox.vbox(
         JBox.hbox(l1,JBox.hglue()),
         JBox.vglue(),
         JBox.hbox(JBox.hglue(),l2,JBox.hglue()),
         JBox.vglue(),
         JBox.hbox(JBox.hglue(),l3)
       );
     frame.add(body);
     frame.setVisible(true);
  }
}
