WACounter


Seaside-Examples-Test

Comment:



Hierarchy:

ProtoObject
Object
WAPresenter
WAComponent
WACounter

Summary:

instance variables:

count

methods:

instance class
as yet unclassified as yet unclassified

Detail:

instance variables:

count

instance methods:

as yet unclassified
count

	^ count
decrease

  count _ count - 1
increase

	count _ count + 1
initialize

	self session registerObjectForBacktracking: self.
	count _ 0
renderContentOn: html

	html heading: count.
	html anchorWithAction: [self increase] text: '++'.
	html space.
	html anchorWithAction: [self decrease] text: '--'

class methods:

as yet unclassified
canBeRoot

	^ true
example

	^ self new
initialize

	(self registerAsApplication: 'counter')

^top


- made by Dandelion -