tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSCDATASection.h
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 #ifndef JSCDATASection_h
22 #define JSCDATASection_h
23
24 #include "CDATASection.h"
25 #include "JSDOMBinding.h"
26 #include "JSText.h"
27 #include <runtime/JSObject.h>
28
29 namespace WebCore {
30
31 class JSCDATASection : public JSText {
32 public:
33     typedef JSText Base;
34     static JSCDATASection* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<CDATASection> impl)
35     {
36         JSCDATASection* ptr = new (JSC::allocateCell<JSCDATASection>(globalObject->globalData().heap)) JSCDATASection(structure, globalObject, impl);
37         ptr->finishCreation(globalObject->globalData());
38         return ptr;
39     }
40
41     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
42     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
43     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
44     static const JSC::ClassInfo s_info;
45
46     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
47     {
48         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
49     }
50
51     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
52 protected:
53     JSCDATASection(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<CDATASection>);
54     void finishCreation(JSC::JSGlobalData&);
55     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
56 };
57
58 JSC::JSValue toJSNewlyCreated(JSC::ExecState*, JSDOMGlobalObject*, CDATASection*);
59
60 class JSCDATASectionPrototype : public JSC::JSNonFinalObject {
61 public:
62     typedef JSC::JSNonFinalObject Base;
63     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
64     static JSCDATASectionPrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
65     {
66         JSCDATASectionPrototype* ptr = new (JSC::allocateCell<JSCDATASectionPrototype>(globalData.heap)) JSCDATASectionPrototype(globalData, globalObject, structure);
67         ptr->finishCreation(globalData);
68         return ptr;
69     }
70
71     static const JSC::ClassInfo s_info;
72     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
73     {
74         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
75     }
76
77 private:
78     JSCDATASectionPrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
79 protected:
80     static const unsigned StructureFlags = Base::StructureFlags;
81 };
82
83 class JSCDATASectionConstructor : public DOMConstructorObject {
84 private:
85     JSCDATASectionConstructor(JSC::Structure*, JSDOMGlobalObject*);
86     void finishCreation(JSC::ExecState*, JSDOMGlobalObject*);
87
88 public:
89     typedef DOMConstructorObject Base;
90     static JSCDATASectionConstructor* create(JSC::ExecState* exec, JSC::Structure* structure, JSDOMGlobalObject* globalObject)
91     {
92         JSCDATASectionConstructor* ptr = new (JSC::allocateCell<JSCDATASectionConstructor>(*exec->heap())) JSCDATASectionConstructor(structure, globalObject);
93         ptr->finishCreation(exec, globalObject);
94         return ptr;
95     }
96
97     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
98     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
99     static const JSC::ClassInfo s_info;
100     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
101     {
102         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
103     }
104 protected:
105     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags;
106 };
107
108 // Attributes
109
110 JSC::JSValue jsCDATASectionConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
111
112 } // namespace WebCore
113
114 #endif