Uses of Interface
rsvp.model.EmailAddressInterface

Packages that use EmailAddressInterface
rsvp.controller   
rsvp.model   
 

Uses of EmailAddressInterface in rsvp.controller
 

Methods in rsvp.controller that return EmailAddressInterface
 EmailAddressInterface EventControllerInterface.getEventOrganizer()
          Returns the EmailAddress of this event's organizer or host.
 EmailAddressInterface EventController.getEventOrganizer()
           
 

Methods in rsvp.controller with parameters of type EmailAddressInterface
 void EventControllerInterface.addResponse(EmailAddressInterface guest, int status, java.lang.String comment)
          Adds a new response to this event, indicating whether or not a particular guest can attend.
 void EventController.addResponse(EmailAddressInterface guest, int status, java.lang.String comment)
           
 void EventControllerInterface.setEventOrganizer(EmailAddressInterface email, java.lang.String passcode)
          Updates this event by changing its organizer.
 void EventController.setEventOrganizer(EmailAddressInterface email, java.lang.String passcode)
           
 

Uses of EmailAddressInterface in rsvp.model
 

Classes in rsvp.model that implement EmailAddressInterface
 class EmailAddress
          This class models an email address.
 

Methods in rsvp.model that return EmailAddressInterface
 EmailAddressInterface ResponseInterface.getEmail()
          Gets the email address of the respondent.
 EmailAddressInterface Response.getEmail()
           
 EmailAddressInterface EventInterface.getOrganizer()
          Gets an EmailAddress object corresponding to the organizer/host of this event.
 EmailAddressInterface Event.getOrganizer()
           
 

Methods in rsvp.model with parameters of type EmailAddressInterface
 void ResponseInterface.setEmail(EmailAddressInterface email)
          Sets the email address of the respondent.
 void Response.setEmail(EmailAddressInterface email)
           
 void EventInterface.setOrganizer(EmailAddressInterface organizer)
          Sets the EmailAddress of the organizer for this event.
 void Event.setOrganizer(EmailAddressInterface organizer)