merge with master
[platform/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 WidgetFeature::WidgetFeature(const std::string& name,
28                              bool required,
29                              bool requested) :
30     m_name(name),
31     m_required(required),
32     m_requested(requested)
33 {
34     //LogDebug("entered");
35 }
36
37 std::string WidgetFeature::getName() const
38 {
39     //LogDebug("entered");
40     return m_name;
41 }
42
43 bool WidgetFeature::isRequired() const
44 {
45     //LogDebug("entered");
46     return m_required;
47 }
48
49 Api::IWidgetFeature::Params WidgetFeature::getParams() const
50 {
51     //LogDebug("entered");
52     return m_params;
53 }
54
55 void WidgetFeature::addParam(const std::string& paramName,
56                              const std::string& paramValue)
57 {
58     //LogDebug("entered");
59     m_params.push_back(std::make_pair(paramName, paramValue));
60 }
61
62 WidgetFeature::~WidgetFeature()
63 {
64     //LogDebug("entered");
65 }
66
67 bool WidgetFeature::isRequestedByWidget() const
68 {
69     return m_requested;
70 }
71 } // WidgetDB
72 } // WrtDeviceApis