games.rednblack.puremvc.interfaces.IMediator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Minimal PureMVC implementation using libGDX data structure
package games.rednblack.puremvc.interfaces;
import games.rednblack.puremvc.util.Interests;
public interface IMediator extends INotifiable {
String getName();
void listNotificationInterests(Interests interests);
void handleNotification(INotification notification);
T getViewComponent();
}