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); }
public RgbOldPrinterAdapter(OldColorPrinter oldColorPrinter) { oldColorPrinter = Printer; }