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

PromoButton.java « news « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ded7b54f3157f0be5534d7a0beb2032f27ba6e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.mapswithme.maps.news;

import android.support.annotation.NonNull;

class PromoButton
{
  @NonNull
  private final String mLabel;
  @NonNull
  private final String mLink;

  PromoButton(@NonNull String label, @NonNull String link)
  {
    mLabel = label;
    mLink = link;
  }

  @NonNull
  String getLink()
  {
    return mLink;
  }

  @NonNull
  String getLabel()
  {
    return mLabel;
  }
}