Reports the usages of absolute alignment constants from AWT and Swing. Internationalized applications use relative alignment because it respects the locale component orientation settings.
Example:
JPanel panel = new JPanel(new BorderLayout(2, 2));
JLabel label = new JLabel("Hello World", SwingConstants.CENTER);
panel.add(label, BorderLayout.NORTH);