transport: sqlite channel load group attribute
[abstract.git] / base / aaMoney.cpp
blob6dfe7678751dc8f736448b38ebd787a1f59bf39f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2008 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include "xpcom-config.h"
24 #include "nsStringAPI.h"
25 #include "nsMemory.h"
26 #include "nsIClassInfoImpl.h"
28 /* Project includes */
29 #include "aaIHandler.h"
30 #include "aaMoney.h"
32 aaMoney::aaMoney()
33 :mId(0), mTag((const PRUnichar *) nsnull), mRead(PR_FALSE), mEdited(PR_FALSE)
37 aaMoney::~aaMoney()
41 NS_IMPL_ISUPPORTS3_CI(aaMoney,
42 aaIDataNode,
43 aaIResource,
44 aaIMoney)
45 /* aaIDataNode */
46 NS_IMETHODIMP
47 aaMoney::Accept(aaIHandler* aQuery)
49 NS_ENSURE_ARG_POINTER(aQuery);
50 return aQuery->HandleMoney(this);
53 NS_IMETHODIMP
54 aaMoney::GetEdited(PRBool* aEdited)
56 NS_ENSURE_ARG_POINTER(aEdited);
57 *aEdited = mEdited;
58 return NS_OK;
61 NS_IMETHODIMP
62 aaMoney::Sync(aaIStorager *aStorager, aaISqliteChannel *aChannel)
64 return NS_ERROR_NOT_IMPLEMENTED;
67 NS_IMETHODIMP
68 aaMoney::GetType(PRInt32 *aType)
70 NS_ENSURE_ARG_POINTER(aType);
71 *aType = aaIAsset::TYPE_MONEY;
72 return NS_OK;
74 PRInt32
75 aaMoney::PickType()
77 return aaIAsset::TYPE_MONEY;
80 NS_IMETHODIMP
81 aaMoney::GetId(PRInt64 *aId)
83 NS_ENSURE_ARG_POINTER(aId);
84 *aId = mId;
85 return NS_OK;
87 NS_IMETHODIMP
88 aaMoney::SetId(PRInt64 aId)
90 return NS_ERROR_NOT_IMPLEMENTED;
92 NS_IMETHODIMP
93 aaMoney::SetNumCode(PRInt64 aNumCode)
95 mId = aNumCode;
96 return NS_OK;
98 PRInt64
99 aaMoney::PickId()
101 return mId;
104 NS_IMETHODIMP
105 aaMoney::GetTag(nsAString & aTag)
107 aTag.Assign(mTag);
108 mRead = PR_TRUE;
109 return NS_OK;
111 NS_IMETHODIMP
112 aaMoney::SetAlphaCode(const nsAString & aAlphaCode)
114 if (mTag.Equals(aAlphaCode))
115 return NS_OK;
116 if (mRead)
117 mEdited = PR_TRUE;
118 mTag.Assign(aAlphaCode);
119 return NS_OK;