Cursor on PPC

I'm trying to display the busy cursor while my java application is running.

The following code displays an hourglass on the desktop but nothing appears when run on the PPC.

try {

frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));

do something

} finally {

frame.setCursor(Cursor.getDefaultCursor());

}

Does anybody know why and how I can display the cursor?

Thanks in advance.

[452 byte] By [EvoBevoa] at [2007-11-27 2:12:52]
# 1
See the restrictions in the API doc for PP java.awt.Component.
YAT_Archivista at 2007-7-12 2:07:40 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
Thanks for your replies.
EvoBevoa at 2007-7-12 2:07:40 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
What do you mean by PP java.awt.Component?
EvoBevoa at 2007-7-12 2:07:40 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
PP is the Personal Profile - one of the J2ME standard libraries. It's basically a subset of J2SE 1.3 with a few things for which support is optional.
YAT_Archivista at 2007-7-12 2:07:40 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 5
Thanks.
EvoBevoa at 2007-7-12 2:07:40 > top of Java-index,Java Mobility Forums,Java ME Technologies...