rsvp.view
Interface RSVPView


public interface RSVPView


Method Summary
 void run()
          Starts interacting with the user.
 void setController(AppControllerInterface controller)
          Sets the controller object that this View will use to interact with data model objects.
 

Method Detail

setController

void setController(AppControllerInterface controller)
Sets the controller object that this View will use to interact with data model objects.

Parameters:
controller -

run

void run()
Starts interacting with the user. When your program calls this method, its main method relinquishes control to the view. Your program will exit when the view decides to exit; you must have set everything up properly before invoking this method. The run() method will typically contain an event-handling loop (e.g. to deal with menu or web inputs).