tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSHTMLOptGroupElement.cpp
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #include "config.h"
22 #include "JSHTMLOptGroupElement.h"
23
24 #include "HTMLNames.h"
25 #include "HTMLOptGroupElement.h"
26 #include "KURL.h"
27 #include <runtime/JSString.h>
28 #include <wtf/GetPtr.h>
29
30 using namespace JSC;
31
32 namespace WebCore {
33
34 ASSERT_CLASS_FITS_IN_CELL(JSHTMLOptGroupElement);
35
36 /* Hash table */
37 #if ENABLE(JIT)
38 #define THUNK_GENERATOR(generator) , generator
39 #else
40 #define THUNK_GENERATOR(generator)
41 #endif
42 #if ENABLE(DFG_JIT)
43 #define INTRINSIC(intrinsic) , intrinsic
44 #else
45 #define INTRINSIC(intrinsic)
46 #endif
47
48 static const HashTableValue JSHTMLOptGroupElementTableValues[] =
49 {
50     { "disabled", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLOptGroupElementDisabled), (intptr_t)setJSHTMLOptGroupElementDisabled THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) },
51     { "label", DontDelete, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLOptGroupElementLabel), (intptr_t)setJSHTMLOptGroupElementLabel THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) },
52     { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsHTMLOptGroupElementConstructor), (intptr_t)0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) },
53     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
54 };
55
56 #undef THUNK_GENERATOR
57 static const HashTable JSHTMLOptGroupElementTable = { 10, 7, JSHTMLOptGroupElementTableValues, 0 };
58 /* Hash table for constructor */
59 #if ENABLE(JIT)
60 #define THUNK_GENERATOR(generator) , generator
61 #else
62 #define THUNK_GENERATOR(generator)
63 #endif
64 #if ENABLE(DFG_JIT)
65 #define INTRINSIC(intrinsic) , intrinsic
66 #else
67 #define INTRINSIC(intrinsic)
68 #endif
69
70 static const HashTableValue JSHTMLOptGroupElementConstructorTableValues[] =
71 {
72     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
73 };
74
75 #undef THUNK_GENERATOR
76 static const HashTable JSHTMLOptGroupElementConstructorTable = { 1, 0, JSHTMLOptGroupElementConstructorTableValues, 0 };
77 const ClassInfo JSHTMLOptGroupElementConstructor::s_info = { "HTMLOptGroupElementConstructor", &DOMConstructorObject::s_info, &JSHTMLOptGroupElementConstructorTable, 0, CREATE_METHOD_TABLE(JSHTMLOptGroupElementConstructor) };
78
79 JSHTMLOptGroupElementConstructor::JSHTMLOptGroupElementConstructor(Structure* structure, JSDOMGlobalObject* globalObject)
80     : DOMConstructorObject(structure, globalObject)
81 {
82 }
83
84 void JSHTMLOptGroupElementConstructor::finishCreation(ExecState* exec, JSDOMGlobalObject* globalObject)
85 {
86     Base::finishCreation(exec->globalData());
87     ASSERT(inherits(&s_info));
88     putDirect(exec->globalData(), exec->propertyNames().prototype, JSHTMLOptGroupElementPrototype::self(exec, globalObject), DontDelete | ReadOnly);
89 }
90
91 bool JSHTMLOptGroupElementConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
92 {
93     return getStaticValueSlot<JSHTMLOptGroupElementConstructor, JSDOMWrapper>(exec, &JSHTMLOptGroupElementConstructorTable, static_cast<JSHTMLOptGroupElementConstructor*>(cell), propertyName, slot);
94 }
95
96 bool JSHTMLOptGroupElementConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
97 {
98     return getStaticValueDescriptor<JSHTMLOptGroupElementConstructor, JSDOMWrapper>(exec, &JSHTMLOptGroupElementConstructorTable, static_cast<JSHTMLOptGroupElementConstructor*>(object), propertyName, descriptor);
99 }
100
101 /* Hash table for prototype */
102 #if ENABLE(JIT)
103 #define THUNK_GENERATOR(generator) , generator
104 #else
105 #define THUNK_GENERATOR(generator)
106 #endif
107 #if ENABLE(DFG_JIT)
108 #define INTRINSIC(intrinsic) , intrinsic
109 #else
110 #define INTRINSIC(intrinsic)
111 #endif
112
113 static const HashTableValue JSHTMLOptGroupElementPrototypeTableValues[] =
114 {
115     { 0, 0, 0, 0 THUNK_GENERATOR(0) INTRINSIC(DFG::NoIntrinsic) }
116 };
117
118 #undef THUNK_GENERATOR
119 static const HashTable JSHTMLOptGroupElementPrototypeTable = { 1, 0, JSHTMLOptGroupElementPrototypeTableValues, 0 };
120 const ClassInfo JSHTMLOptGroupElementPrototype::s_info = { "HTMLOptGroupElementPrototype", &JSC::JSNonFinalObject::s_info, &JSHTMLOptGroupElementPrototypeTable, 0, CREATE_METHOD_TABLE(JSHTMLOptGroupElementPrototype) };
121
122 JSObject* JSHTMLOptGroupElementPrototype::self(ExecState* exec, JSGlobalObject* globalObject)
123 {
124     return getDOMPrototype<JSHTMLOptGroupElement>(exec, globalObject);
125 }
126
127 const ClassInfo JSHTMLOptGroupElement::s_info = { "HTMLOptGroupElement", &JSHTMLElement::s_info, &JSHTMLOptGroupElementTable, 0 , CREATE_METHOD_TABLE(JSHTMLOptGroupElement) };
128
129 JSHTMLOptGroupElement::JSHTMLOptGroupElement(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLOptGroupElement> impl)
130     : JSHTMLElement(structure, globalObject, impl)
131 {
132 }
133
134 void JSHTMLOptGroupElement::finishCreation(JSGlobalData& globalData)
135 {
136     Base::finishCreation(globalData);
137     ASSERT(inherits(&s_info));
138 }
139
140 JSObject* JSHTMLOptGroupElement::createPrototype(ExecState* exec, JSGlobalObject* globalObject)
141 {
142     return JSHTMLOptGroupElementPrototype::create(exec->globalData(), globalObject, JSHTMLOptGroupElementPrototype::createStructure(exec->globalData(), globalObject, JSHTMLElementPrototype::self(exec, globalObject)));
143 }
144
145 bool JSHTMLOptGroupElement::getOwnPropertySlot(JSCell* cell, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
146 {
147     JSHTMLOptGroupElement* thisObject = jsCast<JSHTMLOptGroupElement*>(cell);
148     ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
149     return getStaticValueSlot<JSHTMLOptGroupElement, Base>(exec, &JSHTMLOptGroupElementTable, thisObject, propertyName, slot);
150 }
151
152 bool JSHTMLOptGroupElement::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
153 {
154     JSHTMLOptGroupElement* thisObject = jsCast<JSHTMLOptGroupElement*>(object);
155     ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
156     return getStaticValueDescriptor<JSHTMLOptGroupElement, Base>(exec, &JSHTMLOptGroupElementTable, thisObject, propertyName, descriptor);
157 }
158
159 JSValue jsHTMLOptGroupElementDisabled(ExecState* exec, JSValue slotBase, const Identifier&)
160 {
161     JSHTMLOptGroupElement* castedThis = static_cast<JSHTMLOptGroupElement*>(asObject(slotBase));
162     UNUSED_PARAM(exec);
163     HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(castedThis->impl());
164     JSValue result = jsBoolean(imp->hasAttribute(WebCore::HTMLNames::disabledAttr));
165     return result;
166 }
167
168
169 JSValue jsHTMLOptGroupElementLabel(ExecState* exec, JSValue slotBase, const Identifier&)
170 {
171     JSHTMLOptGroupElement* castedThis = static_cast<JSHTMLOptGroupElement*>(asObject(slotBase));
172     UNUSED_PARAM(exec);
173     HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(castedThis->impl());
174     JSValue result = jsString(exec, imp->getAttribute(WebCore::HTMLNames::labelAttr));
175     return result;
176 }
177
178
179 JSValue jsHTMLOptGroupElementConstructor(ExecState* exec, JSValue slotBase, const Identifier&)
180 {
181     JSHTMLOptGroupElement* domObject = static_cast<JSHTMLOptGroupElement*>(asObject(slotBase));
182     return JSHTMLOptGroupElement::getConstructor(exec, domObject->globalObject());
183 }
184
185 void JSHTMLOptGroupElement::put(JSCell* cell, ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
186 {
187     JSHTMLOptGroupElement* thisObject = jsCast<JSHTMLOptGroupElement*>(cell);
188     ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info);
189     lookupPut<JSHTMLOptGroupElement, Base>(exec, propertyName, value, &JSHTMLOptGroupElementTable, thisObject, slot);
190 }
191
192 void setJSHTMLOptGroupElementDisabled(ExecState* exec, JSObject* thisObject, JSValue value)
193 {
194     JSHTMLOptGroupElement* castedThis = static_cast<JSHTMLOptGroupElement*>(thisObject);
195     HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(castedThis->impl());
196     imp->setBooleanAttribute(WebCore::HTMLNames::disabledAttr, value.toBoolean(exec));
197 }
198
199
200 void setJSHTMLOptGroupElementLabel(ExecState* exec, JSObject* thisObject, JSValue value)
201 {
202     JSHTMLOptGroupElement* castedThis = static_cast<JSHTMLOptGroupElement*>(thisObject);
203     HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(castedThis->impl());
204     imp->setAttribute(WebCore::HTMLNames::labelAttr, valueToStringWithNullCheck(exec, value));
205 }
206
207
208 JSValue JSHTMLOptGroupElement::getConstructor(ExecState* exec, JSGlobalObject* globalObject)
209 {
210     return getDOMConstructor<JSHTMLOptGroupElementConstructor>(exec, static_cast<JSDOMGlobalObject*>(globalObject));
211 }
212
213
214 }