12.07.2015 Views

Podsumowanie wzorców projektowych GoF

Podsumowanie wzorców projektowych GoF

Podsumowanie wzorców projektowych GoF

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

}}DvdNameReplaceSpacesStrategypackage pk.dydakt.to.dp.b.gof.strategy;public class DvdNameReplaceSpacesStrategy extends DvdNameStrategy {public String formatDvdName(String dvdName, char charIn) {return dvdName.replace(' ', charIn);}}DvdNameTheAtEndStrategypackage pk.dydakt.to.dp.b.gof.strategy;public class DvdNameTheAtEndStrategy extends DvdNameStrategy {public String formatDvdName(String dvdName, char charIn) {if (dvdName.startsWith("The ")) {return new String(dvdName.substring(4,(dvdName.length())) + ", The");}if (dvdName.startsWith("THE ")) {return new String(dvdName.substring(4,(dvdName.length())) + ", THE");}if (dvdName.startsWith("the ")) {return new String(dvdName.substring(4,(dvdName.length())) + ", the");}return dvdName;}}Wyjcie na konsoli:Testing formatting with all capsDvd name before formatting: Jay and Silent Bob Strike BackDvd name after formatting: JAY AND SILENT BOB STRIKE BACK==========================Dvd name before formatting: The Fast and the FuriousDvd name after formatting: THE FAST AND THE FURIOUS==========================Dvd name before formatting: The OthersDvd name after formatting: THE OTHERS==========================Testing formatting with beginning the at endDvd name before formatting: Jay and Silent Bob Strike BackDvd name after formatting: Jay and Silent Bob Strike Back==========================Dvd name before formatting: The Fast and the FuriousDvd name after formatting: Fast and the Furious, The==========================Dvd name before formatting: The OthersDvd name after formatting: Others, The==========================Testing formatting with all spaces replaced with *Dvd name before formatting: Jay and Silent Bob Strike BackDvd name after formatting: Jay*and*Silent*Bob*Strike*Back==========================Dvd name before formatting: The Fast and the FuriousDvd name after formatting: The*Fast*and*the*Furious==========================Dvd name before formatting: The OthersDvd name after formatting: The*Others==========================62

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!