Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TimetableProvider.java « editor « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d89e14a982063fd8275762211d666f6adbecf8a5 (plain)
1
2
3
4
5
6
7
8
9
package com.mapswithme.maps.editor;

import androidx.annotation.Nullable;

interface TimetableProvider
{
  @Nullable String getTimetables();
  void setTimetables(@Nullable String timetables);
}