Advertisement
wingman007

Java2014OOP_Zoo

Dec 6th, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 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 class Zoo {
  14.  
  15.     /**
  16.      * @param args the command line arguments
  17.      */
  18.     public static void main(String[] args) {
  19.         // TODO code application logic here
  20.         Cat lisi = new Cat("Lisi");
  21.         Dog sharo = new Dog("Sharo");
  22.        
  23.         Coach coach = new Coach(lisi);
  24.         coach.makeItSpeak();
  25.        
  26.         coach.setEntity(sharo);
  27.         coach.makeItSpeak();
  28.     }
  29.    
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement