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: 2ba1bc031a08dcf7a2e5a563f81b9f2e2cf3fe9d (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 android.support.annotation.NonNull;
import android.support.annotation.Nullable;

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

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