Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class Drink {
  2.  
  3. private String name;
  4. private int volume;
  5.  
  6. public Drink(final String name, final int volume) {
  7. this.name = name;
  8. this.volume = volume;
  9. }
  10.  
  11. public String getName() {
  12. return this.name;
  13. }
  14.  
  15. public int getVolume() {
  16. return this.volume;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement