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

CachedMwmNativeAd.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 342f338919e6882820df07400920b5c62d54898b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mapswithme.maps.ads;

import androidx.annotation.NonNull;

public abstract class CachedMwmNativeAd extends BaseMwmNativeAd
{
  private final long mLoadedTime;

  CachedMwmNativeAd(long loadedTime)
  {
    mLoadedTime = loadedTime;
  }

  long getLoadedTime()
  {
    return mLoadedTime;
  }

  abstract void detachAdListener();

  abstract void attachAdListener(@NonNull Object listener);
}