Author Topic:   Just an observation .....
maha anna
bartender
posted February 29, 2000 03:04 PM             
I was going through java.awt package. The Checkbox class has 2 overloaded constructors whose functionality is same but they just change the 2nd and 3rd args positions. I tested their functionality. It is same for both.Do we need to know this much?

You can check it here
regds
maha anna
Checkbox(String label, boolean state, CheckboxGroup group)
Creates a check box with the specified label, in the specified check box group, and set to the specified state.
Checkbox(String label, CheckboxGroup group, boolean state)
Constructs a Checkbox with the specified label, set to the specified state, and in the specified check box group.

[This message has been edited by maha anna (edited February 29, 2000).]

Tony Alicea
sheriff
posted February 29, 2000 03:26 PM             
No you don't need to know that much

|