Java
Absolute alignment in AWT/Swing code
Warning
New
Last modified: 03 December 2024Reports 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");
panel.add(label, BorderLayout.NORTH);
After the quick-fix is applied:
JPanel panel = new JPanel(new BorderLayout(2, 2));
JLabel label = new JLabel("Hello World");
panel.add(label, BorderLayout.PAGE_START);
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
AbsoluteAlignmentInUserInterface
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?