AdjustFontSizeCommand (in the Spring RCP Sandbox) is very useful and works well...except with my components that are using BoxLayout.
I get the following exception:

ERROR [org.springframework.richclient.application.config. ApplicationLifecycleAdvisor] -
java.lang.NullPointerException
at javax.swing.BoxLayout.preferredLayoutSize(BoxLayou t.java:282)
at java.awt.Container.preferredSize(Container.java:15 76)
at java.awt.Container.getPreferredSize(Container.java :1561)
at javax.swing.JComponent.getPreferredSize(JComponent .java:1609)
at java.awt.BorderLayout.layoutContainer(BorderLayout .java:816)
at java.awt.Container.layout(Container.java:1419)
at java.awt.Container.doLayout(Container.java:1408)
at java.awt.Container.validateTree(Container.java:149 1)
at java.awt.Container.validateTree(Container.java:149 8)
at java.awt.Container.validate(Container.java:1466)
at com.jgoodies.looks.plastic.PlasticTabbedPaneUI.ens ureCurrentLayout(PlasticTabbedPaneUI.java:544)
at com.jgoodies.looks.plastic.PlasticTabbedPaneUI.pai nt(PlasticTabbedPaneUI.java:332)


NOTE: This only occurs if I execute the command while the screen is displayed. If I execute the command before showing the view, then the view appears with the adjusted font size. It seems to work okay on some views...just not ones that have BoxLayout on them.

It would also be good if the JTable fonts were increased in addition to all of the frame titles, menu items, etc.

-Trey