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