ProtoObjectObjectSCRadioGroup
| name | radioButtons | selectedButton |
| instance | class |
|---|---|
| accessing | instance creation |
| name |
|---|
|
| radioButtons |
|---|
|
|
| selectedButton |
|---|
|
| accessing |
|---|
| addButton: aRadioButton |
self radioButtons add: aRadioButton |
| name: aString |
name _ aString |
| radioButtons |
^radioButtons ifNil: [radioButtons _ OrderedCollection new] |
| selectRadioButton: aButton |
self radioButtons do: [:button | button = aButton ifFalse: [button privateMakeUnselected]]. aButton privateMakeSelected |
| instance creation |
|---|
| named: aString |
^self new name: aString |