arcade.mod.controller
Interface IPresenter

All Known Implementing Classes:
Controller

public interface IPresenter

Presenter interfaces acts as the presenter in the model-view-presenter GUI paradigm. Designed to handle events which occur in the view. This interface provides the means for the view to inform the presenter of new events. Ideally, they should all have no parameters and no return value. Implementations of this interface are responsible for most of the logic for editing and reading a model which is not specific to a concrete model implementation.


Method Summary
 void load()
          Inform the presenter that the user is attempting to load
 void newCategorySelected()
          Inform the presenter that the user is attempting to view a new category of resources
 void save()
          Inform the presenter that the user is attempting to save.
 

Method Detail

save

void save()
Inform the presenter that the user is attempting to save.


load

void load()
Inform the presenter that the user is attempting to load


newCategorySelected

void newCategorySelected()
Inform the presenter that the user is attempting to view a new category of resources