When I try to put ButtonGroup object to my Box object, compiler returns the following error:
no method for such a type
Please help me, how can I add my ButtonGroup into Horizontal Box?
|
When I try to put
Please help me, how can I add my
| |||||
feedback
|
|
Something like this:
| |||
|
feedback
|
|
The ButtonGroup extends Object; it is not a Component. So it is not explicitly added to a Container or Component. Rather, it groups AbstractButton instances. Here is the example code from the Java documentation. One advantage of not making ButtonGroup a Component (and probably the reason for implementing it this way) is that you can have AbstractButton instances on different Components be member of the same ButtonGroup.
| ||||
|
feedback
|