Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
WARenderer
Last updated at 5:16 am UTC on 15 September 2017
 WAObject subclass: #WARenderer
	instanceVariableNames: 'context lastId'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'Seaside-Core-Rendering'

A Renderer provides methods for rendering data (typically HTML) onto a Document. It gets all the information needed to do its work from a WARenderContext, which is passed in on initialization.

Renderer are typically controlled by a Painter.

Has subclass WAHtmlCanvas.