document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // DepositSlot.java
  2. // Represents the deposit slot of the ATM
  3. public class DepositSlot
  4. {
  5. // indicates whether envelope was received (always returns true,
  6. // because this is only a software simulation of a real deposit slot)
  7. public boolean isEnvelopeReceived()
  8. {
  9. return true; // deposit envelope was received
  10. } // end method isEnvelopeReceived
  11. } // end class DepositSlot�
');