/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/maps/editor/data/Timespan.java
19 строк
323 B
Dmitry Yunitsky
[android] Separated opening hours UI for PP and editor.
23 мар 2016, 16:49
23 мар 2016, 16:49
1b92eb6
Код
Авторство
О чём код?
package com.mapswithme.maps.editor.data; public class Timespan { public final HoursMinutes start; public final HoursMinutes end; public Timespan(HoursMinutes start, HoursMinutes end) { this.start = start; this.end = end; } @Override public String toString() { return start + "-" + end; } }