Packagecom.ericfeminella.blogs.delegate
Classpublic class BlogLinksDelegate
ImplementsIBlogLinksDelegate

Delegate class instantiated by the application which serves as a wrapper class for the MVC triad

classes within the MVC triad are never referenced directly by the application, instead they must access them via the BlogLinksDelegate class.

See also

IBlogLinksDelegate


Public Properties
 PropertyDefined by
  blogLinksController : BlogLinksController
BlogLinksDelegate
  blogLinksModel : BlogLinksModel
BlogLinksDelegate
  blogLinksView : BlogLinksView
BlogLinksDelegate
Public Methods
 MethodDefined by
  
Instantiates the Model, View and Controller classes for this component
BlogLinksDelegate
  
returns the instance of the Controller to the application for reference
BlogLinksDelegate
  
returns the instance of the model to the application for reference
BlogLinksDelegate
  
returns the instance of the View to the application for reference
BlogLinksDelegate
Property detail
blogLinksControllerproperty
public var blogLinksController:BlogLinksController
blogLinksModelproperty 
public var blogLinksModel:BlogLinksModel
blogLinksViewproperty 
public var blogLinksView:BlogLinksView
Constructor detail
BlogLinksDelegate()constructor
public function BlogLinksDelegate()

Instantiates the Model, View and Controller classes for this component

Method detail
getController()method
public function getController():BlogLinksController

returns the instance of the Controller to the application for reference

Returns
BlogLinksController
getModel()method 
public function getModel():BlogLinksModel

returns the instance of the model to the application for reference

Returns
BlogLinksModel
getView()method 
public function getView():BlogLinksView

returns the instance of the View to the application for reference

Returns
BlogLinksView