Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class SwimBehavior implements MoveBehavior {
  2.     @Override
  3.     public void move() {
  4.         System.out.println("I am swimming!");
  5.     }
  6. }