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

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

import androidx.annotation.NonNull;

public interface Detachable<T>
{
  void attach(@NonNull T object);
  void detach();
}