Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public interface ManageableSlotMachine extends SlotMachine {
  2.  
  3. /**
  4. * Refill the drinks into the specified slot.
  5. *
  6. * @param drink the drink to refill
  7. * @param slot the slot index
  8. * @param amount the amount of the drinks to fill
  9. */
  10. void refill(Drink drink, int slot, int amount);
  11.  
  12. /**
  13. * Set up the coins in the coin box (to change and save the charged coins).
  14. *
  15. * @param coin the coin
  16. * @param amount the amount of coins in the coin box
  17. */
  18. void setupCoinBox(Coin coin, int amount);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement