org.puremvc.java.core
Class ViewTestMediator6

java.lang.Object
  extended by org.puremvc.java.patterns.observer.Notifier
      extended by org.puremvc.java.patterns.mediator.Mediator
          extended by org.puremvc.java.core.ViewTestMediator6
All Implemented Interfaces:
org.puremvc.java.interfaces.IMediator, org.puremvc.java.interfaces.INotifier

public class ViewTestMediator6
extends org.puremvc.java.patterns.mediator.Mediator
implements org.puremvc.java.interfaces.IMediator

A Mediator class used by ViewTest.

See Also:
ViewTest

Field Summary
static java.lang.String NAME
          The Mediator name
 
Constructor Summary
ViewTestMediator6(java.lang.String name, java.lang.Object view)
          Constructor
 
Method Summary
 ViewTest getViewTest()
           
 void handleNotification(org.puremvc.java.interfaces.INotification notification)
           
 java.lang.String[] listNotificationInterests()
           
 void onRemove()
           
 
Methods inherited from class org.puremvc.java.patterns.mediator.Mediator
getMediatorName, getViewComponent, onRegister, setViewComponent
 
Methods inherited from class org.puremvc.java.patterns.observer.Notifier
sendNotification, sendNotification, sendNotification
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.puremvc.java.interfaces.IMediator
getMediatorName, getViewComponent, onRegister, setViewComponent
 
Methods inherited from interface org.puremvc.java.interfaces.INotifier
sendNotification, sendNotification, sendNotification
 

Field Detail

NAME

public static final java.lang.String NAME
The Mediator name

See Also:
Constant Field Values
Constructor Detail

ViewTestMediator6

public ViewTestMediator6(java.lang.String name,
                         java.lang.Object view)
Constructor

Method Detail

listNotificationInterests

public java.lang.String[] listNotificationInterests()
Specified by:
listNotificationInterests in interface org.puremvc.java.interfaces.IMediator
Overrides:
listNotificationInterests in class org.puremvc.java.patterns.mediator.Mediator

handleNotification

public void handleNotification(org.puremvc.java.interfaces.INotification notification)
Specified by:
handleNotification in interface org.puremvc.java.interfaces.IMediator
Overrides:
handleNotification in class org.puremvc.java.patterns.mediator.Mediator

onRemove

public void onRemove()
Specified by:
onRemove in interface org.puremvc.java.interfaces.IMediator
Overrides:
onRemove in class org.puremvc.java.patterns.mediator.Mediator

getViewTest

public ViewTest getViewTest()