Class: ViewController

.Presentation. ViewController


new ViewController()

A controller to handle a group of views. The api is handled simular to views for use in a router.

Source:

Extends

  • Augmented.Object

Methods


<static> getViews()

getViews - get the instances of the views known

Source:
Returns:

Returns an array of view instances

Type
Array

<static> initialize()

initialize - an API for the start of the controller. It is intended to add initializers here

Source:

<static> manageView(view)

manageView - manage a view

Parameters:
Name Type Description
view Augmented.View

An instance of a view to manage

Source:

<static> remove()

remove - an API for the end of the controller. It is intended to add view removal and cleanup here

Source:

<static> removeAllViews()

removeAllViews - cleans up all views known (calling thier remove method)

Source:

<static> render()

render - an API for the render of the controller. It is intended to add view render methods here

Source: