Esempio n. 1
0
        public void Run()
        {
            OldColorPrinter printer  = new OldColorPrinter();
            HexColor        hexColor = new HexColor("#00ff00", 50);

            printer.printColor(hexColor);
            RgbColor rgbColor = new RgbColor(85, 255, 132);

            // UTWORZ ADAPTER I ODKOMENTUJ PONIZSZY KOD
            // Nazwa klasy adaptera to - RgbOldPrinterAdapter
            // Prosze wyslac tylko klase adaptera na e-wsei

            IPrintable adapter = new RgbOldPrinterAdapter(printer);

            adapter.printColor(rgbColor);
        }
Esempio n. 2
0
 public RgbOldPrinterAdapter(OldColorPrinter oldColorPrinter)
 {
     oldColorPrinter = Printer;
 }