Advertisement
wingman007

Java2014OOP_Animal

Dec 6th, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. package zoo;
  8.  
  9. /**
  10.  *
  11.  * @author fmi
  12.  */
  13. public abstract class Animal implements Noisable{
  14.     private String name;
  15.  
  16.     public String getName() {
  17.         return name;
  18.     }
  19.  
  20.     public void setName(String name) {
  21.         this.name = name;
  22.     }
  23.    
  24.     public Animal(String name) {
  25.         this.name = name;
  26.     }
  27.  
  28. //    public Animal() {
  29. //    }
  30.      
  31.    
  32.     @Override
  33.     public void makeNoise() {
  34.         System.out.println("Grrrrrr");
  35.     }
  36.    
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement