upload tizen1.0 source
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Messaging / MessagingStorageMultiCallback.cpp
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16 #include "MessagingStorageMultiCallback.h"
17
18
19 namespace TizenApis {
20 namespace Tizen1_0 {
21
22 using namespace WrtDeviceApis::Commons;
23 using namespace WrtDeviceApis::CommonsJavaScript;
24
25 EventOnMessagingStorageChangesPrivateData::EventOnMessagingStorageChangesPrivateData(
26                         const JSCallbackManagerPtr& messagesAdded,      
27                         const JSCallbackManagerPtr& messagesUpdated,
28                         const JSCallbackManagerPtr& messagesRemoved,
29                         const int functionIndex) :
30                         m_messagesAdded(messagesAdded), 
31                         m_messagesUpdated(messagesUpdated), 
32                         m_messagesRemoved(messagesRemoved),
33                         m_functionIndex(functionIndex),
34                         m_type(-1),
35                         m_index(-1),
36                         m_filter(NULL)
37 {
38 }
39
40 int EventOnMessagingStorageChangesPrivateData::getFunctionIndex() const
41 {
42         return m_functionIndex;
43 }
44
45 JSCallbackManagerPtr EventOnMessagingStorageChangesPrivateData::getMessagesAdded() const
46 {
47         return m_messagesAdded;
48 }
49
50 JSCallbackManagerPtr EventOnMessagingStorageChangesPrivateData::getMessagesUpdated() const
51 {
52         return m_messagesUpdated;
53 }
54
55 JSCallbackManagerPtr EventOnMessagingStorageChangesPrivateData::getMessagesRemoved() const
56 {
57         return m_messagesRemoved;
58 }
59
60 }
61 }
62
63
64
65