Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2. * -->This page is prepared by LordAmit
  3. */
  4. package observer.strategypattern;
  5.  
  6. /**
  7.  *
  8.  * @author LordAmit
  9.  */
  10. public interface IMode {
  11.     /**
  12.      * this is the interface method which can be used by lots and lots of developers throughout the world
  13.      * @param sol specifies the soldier in use
  14.      */
  15.     public void fight (Soldier sol);
  16.  
  17. }