summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/JavaScriptCore/dom/JSCElement.cpp
blob: 2ff24d7b9d6a3f5aae7960a1263dca11da524762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "JSCElement.h"
#include "JSCNode.h"

namespace Arabica {
namespace DOM {


JSStaticValue JSCElement::staticValues[] = {
	{ "tagName", tagNameAttrGetter, 0, kJSPropertyAttributeDontDelete | kJSPropertyAttributeReadOnly },

	{ 0, 0, 0, 0 }
};

JSStaticFunction JSCElement::staticFunctions[] = {
	{ "getAttribute", getAttributeCallback, kJSPropertyAttributeDontDelete },
	{ "setAttribute", setAttributeCallback, kJSPropertyAttributeDontDelete },
	{ "removeAttribute", removeAttributeCallback, kJSPropertyAttributeDontDelete },
	{ "getAttributeNode", getAttributeNodeCallback, kJSPropertyAttributeDontDelete },
	{ "setAttributeNode", setAttributeNodeCallback, kJSPropertyAttributeDontDelete },
	{ "removeAttributeNode", removeAttributeNodeCallback, kJSPropertyAttributeDontDelete },
	{ "getElementsByTagName", getElementsByTagNameCallback, kJSPropertyAttributeDontDelete },
	{ "getAttributeNS", getAttributeNSCallback, kJSPropertyAttributeDontDelete },
	{ "setAttributeNS", setAttributeNSCallback, kJSPropertyAttributeDontDelete },
	{ "removeAttributeNS", removeAttributeNSCallback, kJSPropertyAttributeDontDelete },
	{ "getAttributeNodeNS", getAttributeNodeNSCallback, kJSPropertyAttributeDontDelete },
	{ "setAttributeNodeNS", setAttributeNodeNSCallback, kJSPropertyAttributeDontDelete },
	{ "getElementsByTagNameNS", getElementsByTagNameNSCallback, kJSPropertyAttributeDontDelete },
	{ "hasAttribute", hasAttributeCallback, kJSPropertyAttributeDontDelete },
	{ "hasAttributeNS", hasAttributeNSCallback, kJSPropertyAttributeDontDelete },
	{ 0, 0, 0 }
};

JSValueRef JSCElement::tagNameAttrGetter(JSContextRef ctx, JSObjectRef thisObj, JSStringRef propertyName, JSValueRef* exception) {
	struct JSCElementPrivate* privData = static_cast<JSCElement::JSCElementPrivate* >(JSObjectGetPrivate(thisObj));
	JSStringRef retString = JSStringCreateWithUTF8CString(privData->arabicaThis->getTagName().c_str());
	JSValueRef retObj = JSValueMakeString(ctx, retString);
	JSStringRelease(retString);
	return retObj;

}

}
}