Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / NFC / JSNdefRecordText.h
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
18
19 #ifndef WRTPLUGINS_TIZEN_JS_NDEFRECORD_TEXT_H_
20 #define WRTPLUGINS_TIZEN_JS_NDEFRECORD_TEXT_H_
21
22 #include "JSNdefRecord.h"
23
24 namespace TizenApis {
25 namespace Tizen1_0 {
26
27 class JSNdefRecordText
28 {
29 public:
30         static const JSClassDefinition* getClassInfo();
31
32         static const JSClassRef getClassRef();
33
34         static JSObjectRef createJSObject(JSContextRef context, 
35                 const Api::NFC::NdefRecordProperties &ndefRecordProperties, std::vector<unsigned char> payload);
36
37         static JSObjectRef createJSObject(JSContextRef context, const std::string &text, 
38                 const std::string &langCode, const short encodeType);
39 private:
40         /**
41      * The callback invoked when an object is first created.
42      */
43         static void initialize(JSContextRef context, JSObjectRef object);
44
45         /**
46      * The callback invoked when an object is finalized.
47      */
48         static void finalize(JSObjectRef object);
49
50         static JSObjectRef constructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
51
52         /**
53      * The callback invoked when getting a property's value.
54      */
55         static JSValueRef getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
56
57     /**
58      * The callback invoked when an object is used as the target of an 'instanceof' expression.
59      */
60     static bool hasInstance(JSContextRef context,
61             JSObjectRef constructor,
62             JSValueRef possibleInstance,
63             JSValueRef* exception);
64
65         /**
66      * This structure contains properties and callbacks that define a type of object.
67      */
68         static JSClassDefinition m_classInfo;
69
70         /**
71      * This structure describes a statically declared value property.
72      */
73         static JSStaticValue m_property[];
74
75         static JSClassRef m_jsClassRef;
76
77 };
78
79 } //Tizen1_0
80 } //TizenApis
81
82 #endif
83