001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
package horstmann.ch02_mail;
/**
   A mailbox contains messages that can be listed, kept or discarded.
 */
public class Mailbox
{
  /**
      Creates Mailbox object.
      @param aPasscode passcode number
      @param aGreeting greeting string
   */
  public Mailbox(String aPasscode, String aGreeting)
  {
    passcode = aPasscode;
    greeting = aGreeting;
    newMessages = new MessageQueue();
    keptMessages = new MessageQueue();
  }

  /**
      Check if the passcode is correct.
      @param aPasscode a passcode to check
      @return true if the supplied passcode matches the mailbox passcode
   */
  public boolean checkPasscode(String aPasscode)
  {
    return aPasscode.equals(passcode);
  }

  /**
      Add a message to the mailbox.
      @param aMessage the message to be added
   */
  public void addMessage(Message aMessage)
  {
    newMessages.add(aMessage);
  }

  /**
      Get the current message.
      @return the current message
   */
  public Message getCurrentMessage()
  {
    if (newMessages.size() > 0)
      return newMessages.peek();
    else if (keptMessages.size() > 0)
      return keptMessages.peek();
    else
      return null;
  }

  /**
      Remove the current message from the mailbox.
      @return the message that has just been removed
   */
  public Message removeCurrentMessage()
  {
    if (newMessages.size() > 0)
      return newMessages.remove();
    else if (keptMessages.size() > 0)
      return keptMessages.remove();
    else
      return null;
  }

  /**
      Save the current message
   */
  public void saveCurrentMessage()
  {
    Message m = removeCurrentMessage();
    if (m != null)
      keptMessages.add(m);
  }

  /**
      Change mailbox's greeting.
      @param newGreeting the new greeting string
   */
  public void setGreeting(String newGreeting)
  {
    greeting = newGreeting;
  }

  /**
      Change mailbox's passcode.
      @param newPasscode the new passcode
   */
  public void setPasscode(String newPasscode)
  {
    passcode = newPasscode;
  }

  /**
      Get the mailbox's greeting.
      @return the greeting
   */
  public String getGreeting()
  {
    return greeting;
  }

  private MessageQueue newMessages;
  private MessageQueue keptMessages;
  private String greeting;
  private String passcode;
}