Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public abstract class Animal {
  2.    
  3.     protected MoveBehavior moveBehavior;
  4.    
  5.     public abstract void display();
  6.    
  7.     public void doMove(){
  8.         moveBehavior.move();
  9.     }
  10.    
  11.     public void setMove(MoveBehavior moveBehavior) {
  12.         this.moveBehavior = moveBehavior;
  13.     }
  14. }