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

PaymentData.java « data « bookmarks « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9148b80132e0b3f3a1f009e90e21d0fa7cf2fbc (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.mapswithme.maps.bookmarks.data;

import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

public class PaymentData implements Parcelable
{
  @NonNull
  private final String mServerId;
  @NonNull
  private final String mProductId;
  @NonNull
  private final String mName;
  @Nullable
  private final String mImgUrl;
  @NonNull
  private final String mAuthorName;

  public PaymentData(@NonNull String serverId, @NonNull String productId, @NonNull String name,
                     @Nullable String imgUrl, @NonNull String authorName)
  {
    mServerId = serverId;
    mProductId = productId;
    mName = name;
    mImgUrl = imgUrl;
    mAuthorName = authorName;
  }

  private PaymentData(Parcel in)
  {
    mServerId = in.readString();
    mProductId = in.readString();
    mName = in.readString();
    mImgUrl = in.readString();
    mAuthorName = in.readString();
  }

  public static final Creator<PaymentData> CREATOR = new Creator<PaymentData>()
  {
    @Override
    public PaymentData createFromParcel(Parcel in)
    {
      return new PaymentData(in);
    }

    @Override
    public PaymentData[] newArray(int size)
    {
      return new PaymentData[size];
    }
  };

  @NonNull
  public String getServerId()
  {
    return mServerId;
  }

  @NonNull
  public String getProductId()
  {
    return mProductId;
  }

  @NonNull
  public String getName()
  {
    return mName;
  }

  @Nullable
  public String getImgUrl()
  {
    return mImgUrl;
  }

  @NonNull
  public String getAuthorName()
  {
    return mAuthorName;
  }

  @Override
  public int describeContents()
  {
    return 0;
  }

  @Override
  public void writeToParcel(Parcel dest, int flags)
  {
    dest.writeString(mServerId);
    dest.writeString(mProductId);
    dest.writeString(mName);
    dest.writeString(mImgUrl);
    dest.writeString(mAuthorName);
  }
}