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

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

import android.support.annotation.NonNull;

interface FormatPriceStrategy
{
  @NonNull
  String format(@NonNull TaxiInfo.Product product);
}