WAClosureTest


Seaside-Examples-Test

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WAComponent
WAClosureTest

Summary:

methods:

instance class
as yet unclassified no messages

Detail:

instance methods:

as yet unclassified
ensure

	[self go] ensure: [self inform: 'ensure']
go

	|i|
	i _ 1.
	#(a b c) do: [:each | self inform: each asString, ' ', i asString. i _ i + 1]
renderContentOn: html

	html anchorWithAction: [self go] text: 'go'.
	html space.
	html anchorWithAction: [self ensure] text: 'go with ensure'.

class methods:

^top


- made by Dandelion -