summaryrefslogtreecommitdiffstats
path: root/dom/payments/PaymentAddress.cpp
blob: 86e3b446c73ca2b062d605f4ab2de081fec45656 (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "mozilla/dom/PaymentAddress.h"
#include "mozilla/dom/PaymentAddressBinding.h"

namespace mozilla::dom {

NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(PaymentAddress, mOwner)

NS_IMPL_CYCLE_COLLECTING_ADDREF(PaymentAddress)
NS_IMPL_CYCLE_COLLECTING_RELEASE(PaymentAddress)

NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(PaymentAddress)
  NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
  NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END

PaymentAddress::PaymentAddress(
    nsPIDOMWindowInner* aWindow, const nsAString& aCountry,
    const nsTArray<nsString>& aAddressLine, const nsAString& aRegion,
    const nsAString& aRegionCode, const nsAString& aCity,
    const nsAString& aDependentLocality, const nsAString& aPostalCode,
    const nsAString& aSortingCode, const nsAString& aOrganization,
    const nsAString& aRecipient, const nsAString& aPhone)
    : mCountry(aCountry),
      mAddressLine(aAddressLine.Clone()),
      mRegion(aRegion),
      mRegionCode(aRegionCode),
      mCity(aCity),
      mDependentLocality(aDependentLocality),
      mPostalCode(aPostalCode),
      mSortingCode(aSortingCode),
      mOrganization(aOrganization),
      mRecipient(aRecipient),
      mPhone(aPhone),
      mOwner(aWindow) {}

void PaymentAddress::GetCountry(nsAString& aRetVal) const {
  aRetVal = mCountry;
}

void PaymentAddress::GetAddressLine(nsTArray<nsString>& aRetVal) const {
  aRetVal = mAddressLine.Clone();
}

void PaymentAddress::GetRegion(nsAString& aRetVal) const { aRetVal = mRegion; }

void PaymentAddress::GetRegionCode(nsAString& aRetVal) const {
  aRetVal = mRegionCode;
}

void PaymentAddress::GetCity(nsAString& aRetVal) const { aRetVal = mCity; }

void PaymentAddress::GetDependentLocality(nsAString& aRetVal) const {
  aRetVal = mDependentLocality;
}

void PaymentAddress::GetPostalCode(nsAString& aRetVal) const {
  aRetVal = mPostalCode;
}

void PaymentAddress::GetSortingCode(nsAString& aRetVal) const {
  aRetVal = mSortingCode;
}

void PaymentAddress::GetOrganization(nsAString& aRetVal) const {
  aRetVal = mOrganization;
}

void PaymentAddress::GetRecipient(nsAString& aRetVal) const {
  aRetVal = mRecipient;
}

void PaymentAddress::GetPhone(nsAString& aRetVal) const { aRetVal = mPhone; }

PaymentAddress::~PaymentAddress() = default;

JSObject* PaymentAddress::WrapObject(JSContext* aCx,
                                     JS::Handle<JSObject*> aGivenProto) {
  return PaymentAddress_Binding::Wrap(aCx, this, aGivenProto);
}

}  // namespace mozilla::dom