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