/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/maps/api/ParsedRoutingData.java
18 строк
396 B
Dmitry Yunitsky
[android] Retrieve parsed routing params and build route.
08 авг 2016, 11:39
08 авг 2016, 11:39
c0163b8
Код
Авторство
О чём код?
package com.mapswithme.maps.api; import com.mapswithme.maps.Framework; /** * Represents Framework::ParsedRoutingData from core. */ public class ParsedRoutingData { public final RoutePoint[] mPoints; @Framework.RouterType public final int mRouterType; public ParsedRoutingData(RoutePoint[] points, int routerType) { this.mPoints = points; this.mRouterType = routerType; } }