I use both Eclipse3.1 and Xcode2.1 on OSX10.4 with Apple Jaca5.0
release1.
On Eclipse, I cannot run any swing example...
On Xcode, I can.
If you have any opinion about the trouble, Please give me your advice.
Erro code is below...
2005-07-12 01:58:04.677 java[1283] Apple AWT Java VM was loaded on
first thread -- can't start AWT
Exception in thread "main" java.lang.InternalError: Can't start the
AWT because Java was started on the first thread. Make sure
StartOnFirstThread is not specified in your application's Info.plist
or on the command line
import javax.swing.*;
public class HelloWorldSwing {
public static void main(String[] args) {
JFrame frame = new JFrame("HelloWorldSwing");
final JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden