/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/excel/MyCell.java
57 строк
1 KB
panos-kakos
[JAVA-28185] (#15367)
09 дек 2023, 22:15
09 дек 2023, 22:15
f624403
Код
Авторство
О чём код?
package com.baeldung.excel; public class MyCell { private String content; private String textColor; private String bgColor; private String textSize; private String textWeight; public MyCell() { } public MyCell(String content) { this.content = content; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getTextColor() { return textColor; } public void setTextColor(String textColor) { this.textColor = textColor; } public String getBgColor() { return bgColor; } public void setBgColor(String bgColor) { this.bgColor = bgColor; } public String getTextSize() { return textSize; } public void setTextSize(String textSize) { this.textSize = textSize; } public String getTextWeight() { return textWeight; } public void setTextWeight(String textWeight) { this.textWeight = textWeight; } }