summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/attribution/AttributionLayout.java
blob: b08a8353bec5106845f654e6664014a287ef8bba (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
package com.mapbox.mapboxsdk.attribution;

import android.graphics.Bitmap;
import android.graphics.PointF;
import android.support.annotation.Nullable;

public class AttributionLayout {

  private Bitmap logo;
  private PointF anchorPoint;
  private boolean shortText;

  public AttributionLayout(@Nullable Bitmap logo, @Nullable PointF anchorPoint, boolean shortText) {
    this.logo = logo;
    this.anchorPoint = anchorPoint;
    this.shortText = shortText;
  }

  public Bitmap getLogo() {
    return logo;
  }

  public PointF getAnchorPoint() {
    return anchorPoint;
  }

  public boolean isShortText() {
    return shortText;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }

    AttributionLayout that = (AttributionLayout) o;

    if (logo != null ? !logo.equals(that.logo) : that.logo != null) {
      return false;
    }
    return anchorPoint != null ? anchorPoint.equals(that.anchorPoint) : that.anchorPoint == null;
  }

  @Override
  public int hashCode() {
    int result = logo != null ? logo.hashCode() : 0;
    result = 31 * result + (anchorPoint != null ? anchorPoint.hashCode() : 0);
    return result;
  }

  @Override
  public String toString() {
    return "AttributionLayout{"
      + "logo=" + logo
      + ", anchorPoint=" + anchorPoint
      + '}';
  }
}