While I'm waiting for Outlook to launch, I'll throw this up. At the beginning of the 21 Days book, the author states that the portability of Java's code allows developers to Write one, debug everywhere; funny. So far, any code that I've used for any assignments, examples, or exercises has worked fine on my laptop (where I'm using Eclipse) or on my Mac (where I'm using vim and the command line tools). Until chapter 9 which introduces Swing. The classes would compile fine on either platform, but when I ran them on OS X, I'd get the following output:
Exception in thread "main" java.lang.Error: Do not use FormatFrame.add() use FormatFrame.getContentPane().add() instead
at javax.swing.JFrame.createRootPaneException(JFrame.java:465)
at javax.swing.JFrame.addImpl(JFrame.java:491)
at java.awt.Container.add(Container.java:307)
at FormatFrame.(FormatFrame.java:24)
at FormatFrame.main(FormatFrame.java:29)
shell returned 1
I managed to track the problem down to the line
add(panel);
which added a JPanel to JFrame
FormatFrame
. Based on the error, it looked like the runtime environment wanted the
getContentPane().add()
method used rather than the
add()
method. Sure enough; altered that line of code and it compiled and ran successfully. Huzzah! On to chapter 10...