test package strategy; public class Client { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub IStrategy strategy = new Strategy1(); Context context = new Context(strategy); context.contextInterface(); strategy = new Strategy2(); context = new Context(strategy); context.contextInterface(); } }