javelinBCD
unread,Feb 27, 2009, 1:54:42 AM2/27/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to WidgetFX Developers
I checked out from svn to play around with the code a little. I want
to be able to dock left, right, top, and a moveable docking area.
Partially to start learning some JavaFX. When I go to build the
WidgetFX-Container project is is giving me errors. I have JDK 1.6
Update 12 installed, I have the JavaFX 1.1 NetBeans update. The
following message is the build errors (I am at a loss why it is not
finding the java.awt.TrayIcon class):
init:
deps-jar:
E:\Users\Timothy\Documents\My WidgetFX\container\src\org\widgetfx\ui
\JXTrayIcon.java:51: cannot find symbol
symbol: class TrayIcon
public class JXTrayIcon extends TrayIcon {
E:\Users\Timothy\Documents\My WidgetFX\container\src\org\widgetfx
\communication\CommunicationProtocol.java:60: load
(java.io.InputStream) in java.util.Properties cannot be applied to
(java.io.StringReader)
properties.load(new StringReader(URLDecoder.decode(args
[4], "UTF-8")));
E:\Users\Timothy\Documents\My WidgetFX\container\src\org\widgetfx\ui
\JXTrayIcon.java:78: cannot find symbol
symbol : method addMouseListener(<anonymous
java.awt.event.MouseAdapter>)
location: class org.widgetfx.ui.JXTrayIcon
addMouseListener(new MouseAdapter() {
My java project has no problem seeing the TrayIcon class. I am
obviously doing something wrong. Any help would be good.