Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package animal_dog_puppey;
  2.  
  3. public class Animal {
  4.  
  5. private final String name;
  6.  
  7. public Animal(String name) {
  8. this.name = name;
  9. }
  10.  
  11. public String getName() {
  12. return name;
  13. }
  14.  
  15. public void bite(){
  16. }
  17. public void voice(){
  18. }
  19. public void run(){
  20. }
  21. public void jump(){
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement