Reputation: 119
I want to use JAVA SE Color class in my Blackberry application.
From java.awt.Color package
I have a project on image effect and control(hue,contrast).I have seen android code in that they use Color.colorToHSV(). I saw the same for Blackberry Color class but it has no methods. So thats why i need JAVA SE color class so that i can use these methods,....
Can I use JAVA SE Color class?
What should I do to do so?
Upvotes: 1
Views: 181
Reputation:
There is no Java SE Color class support in BlackBerry SDK.
Instead of this class there is net.rim.device.api.ui.Color
class. It is less functional than Java SE java.awt.Color
class.
But there's a workaround.
When you have installed Java SE SDK on your computer, then in that folder where Java SE SDK installed there is src.zip
file.
This file contains source code for all standard Java SE classes, including java.awt.Color
class. Unpack this src.zip
file, find java/awt/Color.java
and inspect it, how does it work.
And implement this functionality for your BB application.
Upvotes: 2