A strange message is appearing in the console when I run my Java Swing app:
"Invalid kMDItemPath for Console.class"
What's notable about Console.java, you might ask?
* It extends JFrame.
* I use the small window style: this.getRootPane().putClientProperty("Window.style", "small"); * One of its children is a button with an action listener with the following code: final Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
StringSelection t = new StringSelection(textArea.getText()); clipboard.setContents(t, t);
Despite the message, my app seems to work as expected.
Any ideas what might be giving me this message?
Thanks
Steve
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden