ProtoObjectObjectWAPresenterWAComponentWANavigationBar
| actionsSelector | mOwner |
| instance | class |
|---|---|
| as yet unclassified | no messages
|
| actionsSelector |
|---|
| mOwner |
|---|
| as yet unclassified |
|---|
| actions |
^ self target perform: actionsSelector |
| actionsSelector: aSymbol |
actionsSelector _ aSymbol |
| initialize |
actionsSelector _ #actions |
| owner: anObject |
mOwner _ anObject |
| renderContentOn: html |
self actions do: [:symbol | symbol numArgs = 0 ifTrue: [self renderLink: symbol on: html] ifFalse: [self renderInput: symbol on: html]] |
| renderInput: aSymbol on: html |
html form: [ html bold: aSymbol capitalized. html space. html textInputWithValue: '' callback: [:v | self target perform: aSymbol with: v]. ] |
| renderLink: aSymbol on: html |
html anchorOn: aSymbol of: self target. html break |
| target |
^ mOwner activeComponent |