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

IntentProcessor.java « intent « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f38ab3b442704d81773028369f94478617b31fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mapswithme.maps.intent;

import android.content.Intent;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

public interface IntentProcessor
{
  boolean isSupported(@NonNull Intent intent);

  @Nullable
  MapTask process(@NonNull Intent intent);
}