SunMS Bridge

Greenhorn
+ Follow
since Jan 17, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by SunMS Bridge

You can directly create an instance of the bean and start using the methods in the bean. Make sure you import the package before you access the methods.
import xxx.beans.color;
...
...
Color myColor = new Color();
// to set the bean values
myColor.setRed("23");myColor.setBlue("55");
myColor.setGreen("66");
// to get the bean values
String red = myColor.getRed("23");
String blue= myColor.setBlue("55");
String green = myColor.setGreen("66");
That should work!!!
21 years ago