The interface definition for a PureMVC Facade.
The Facade Pattern suggests providing a single class to act as a
central point of communication for a subsystem.
In PureMVC, the Facade acts as an interface between the core MVC
actors (Model, View, Controller) and the rest of your application.
|
|
|
|
|
retreieveProxy(self,
proxyName)
Retrieve a IProxy from the Model by name. |
|
|
|
|
|
|
|
|
|
removeCommand(self,
notificationName)
Remove a previously registered ICommand to
INotification mapping from the Controller. |
source code
|
|
|
hasCommand(self,
notificationName)
Check if a Command is registered for a given Notification. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from INotifier :
initializeNotifier ,
sendNotification
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|