org.puremvc.java.core
Class ViewTestMediator2

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.ViewTestMediator2
All Implemented Interfaces:
org.puremvc.java.interfaces.IMediator, org.puremvc.java.interfaces.INotifier

public class ViewTestMediator2
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
ViewTestMediator2(java.lang.Object view)
          Constructor
 
Method Summary
 ViewTest getViewTest()
           
 void handleNotification(org.puremvc.java.interfaces.INotification notification)
           
 java.lang.String[] listNotificationInterests()
           
 
Methods inherited from class org.puremvc.java.patterns.mediator.Mediator
getMediatorName, getViewComponent, onRegister, onRemove, 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, onRemove, 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

ViewTestMediator2

public ViewTestMediator2(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

getViewTest

public ViewTest getViewTest()