/
NikolayIvkin
/
MPAndroidChart1
Обзор
Документация
Войти
/
NikolayIvkin
/
MPAndroidChart1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/notimportant/ContentItem.java
22 строки
387 B
almic
More Cleanup
28 окт 2018, 03:00
Не верифицирован
28 окт 2018, 03:00
5030b36
Код
Авторство
О чём код?
package com.xxmassdeveloper.mpchartexample.notimportant; /** * Created by Philipp Jahoda on 07/12/15. */ class ContentItem { final String name; final String desc; boolean isSection = false; ContentItem(String n) { name = n; desc = ""; isSection = true; } ContentItem(String n, String d) { name = n; desc = d; } }