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: f3b26c94d54a5859a140821631edd54bb8a87324 (plain)
1
2
3
4
5
6
7
8
9
package com.mapswithme.maps.editor;

import android.support.annotation.Nullable;

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