Java Swing Tutorial - Java Box.createHorizontalGlue()








Syntax

Box.createHorizontalGlue() has the following syntax.

public static Component createHorizontalGlue()

Example

In the following code shows how to use Box.createHorizontalGlue() method.

import java.awt.BorderLayout;
import java.awt.Component;
/*  w  w  w.  j av  a 2s.c om*/
import javax.swing.Box;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;

public class Main {
  public static void main(String args[]) {
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Box rowOne = Box.createHorizontalBox();
    rowOne.add(new JLabel("Username"));
    rowOne.add(new JTextField());
    Component rowTwo = Box.createHorizontalGlue();

    f.add(rowOne, BorderLayout.NORTH);
    f.add(rowTwo, BorderLayout.SOUTH);
    f.setSize(300, 200);
    f.setVisible(true);
  }
}