/
SofiMut
/
concurrentCollection
Обзор
Документация
Войти
/
SofiMut
/
concurrentCollection
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/main/java/MaxTextABC.java
20 строк
325 B
Sofia Stepanova
first_commit
16 дек 2025, 10:37
16 дек 2025, 10:37
d73dcba
Код
Авторство
О чём код?
public class MaxTextABC<T, I> { protected T text; protected I count; public void setText(T text) { this.text = text; } public void setCount(I count) { this.count = count; } public T getText() { return text; } public I getCount() { return count; } }