SCRadioGroup


SeasideTesting-Form Components

Comment:



Hierarchy:

ProtoObject
Object
SCRadioGroup

Summary:

instance variables:

name radioButtons selectedButton

methods:

instance class
accessing instance creation

Detail:

instance variables:

name
inferredType:
UndefinedObject
radioButtons
InitialValue:
an OrderedCollection()
inferredType:
OrderedCollection
selectedButton
inferredType:
UndefinedObject

instance methods:

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

class methods:

instance creation
named: aString

	^self new name: aString

^top


- made by Dandelion -