Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Fish extends Animal {
  2.  
  3.     public Fish() {
  4.         this.moveBehavior = new SwimBehavior();
  5.     }
  6.  
  7.     @Override
  8.     public void display() {
  9.         System.out.println("Fish");
  10.     }
  11. }