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

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

import android.content.Intent;
import android.support.annotation.Nullable;

public interface TargetFragmentCallback
{
  void onTargetFragmentResult(int resultCode, @Nullable Intent data);
  boolean isTargetAdded();
}