/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
patterns-modules/solid/src/main/java/com/baeldung/s/BookPrinter.java
13 строк
281 B
panos-kakos
[JAVA-14174] Renamed paterns to paterns-module (#12718)
19 сен 2022, 09:44
19 сен 2022, 09:44
63a9bfb
Код
Авторство
О чём код?
package com.baeldung.s; public class BookPrinter { //methods for outputting text void printTextToConsole(String text){ //our code for formatting and printing the text } void printTextToAnotherMedium(String text){ //code for writing to any other location.. } }