Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / modules / tizen / WidgetDB / WidgetFeature.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 /*
17  * @author      Grzegorz Krawczyk (g.krawczyk@samsung.com)
18  * @version     0.1
19  * @brief
20  */
21
22 #include <dpl/log/log.h>
23 #include "WidgetFeature.h"
24
25 namespace WrtDeviceApis {
26 namespace WidgetDB {
27
28 WidgetFeature::WidgetFeature(const std::string& name,
29                              bool required,
30                              bool requested) :
31     m_name(name),
32     m_required(required),
33     m_requested(requested)
34 {
35     //LogDebug("entered");
36 }
37
38 std::string WidgetFeature::getName() const
39 {
40     //LogDebug("entered");
41     return m_name;
42 }
43
44 bool WidgetFeature::isRequired() const
45 {
46     //LogDebug("entered");
47     return m_required;
48 }
49
50 Api::IWidgetFeature::Params WidgetFeature::getParams() const
51 {
52     //LogDebug("entered");
53     return m_params;
54 }
55
56 void WidgetFeature::addParam(const std::string& paramName,
57         const std::string& paramValue)
58 {
59     //LogDebug("entered");
60     m_params.push_back(std::make_pair(paramName, paramValue));
61 }
62
63 WidgetFeature::~WidgetFeature()
64 {
65     //LogDebug("entered");
66 }
67
68 bool WidgetFeature::isRequestedByWidget() const
69 {
70     return m_requested;
71 }
72
73 } // WidgetDB
74 } // WrtDeviceApis