~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/generated/JSHTMLTableSectionElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef JSHTMLTableSectionElement_h
22
22
#define JSHTMLTableSectionElement_h
23
23
 
 
24
#include "HTMLTableSectionElement.h"
24
25
#include "JSHTMLElement.h"
25
 
#include "HTMLTableSectionElement.h"
 
26
 
26
27
namespace WebCore {
27
28
 
28
29
class HTMLTableSectionElement;
30
31
class JSHTMLTableSectionElement : public JSHTMLElement {
31
32
    typedef JSHTMLElement Base;
32
33
public:
33
 
    JSHTMLTableSectionElement(PassRefPtr<JSC::Structure>, PassRefPtr<HTMLTableSectionElement>);
 
34
    JSHTMLTableSectionElement(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<HTMLTableSectionElement>);
34
35
    static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
35
36
    virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
36
 
    virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValuePtr, JSC::PutPropertySlot&);
 
37
    virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
 
38
    virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
37
39
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
38
40
    static const JSC::ClassInfo s_info;
39
41
 
40
 
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValuePtr prototype)
 
42
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
41
43
    {
42
44
        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType));
43
45
    }
44
46
 
45
 
    static JSC::JSValuePtr getConstructor(JSC::ExecState*);
 
47
    static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
46
48
    HTMLTableSectionElement* impl() const
47
49
    {
48
50
        return static_cast<HTMLTableSectionElement*>(Base::impl());
49
51
    }
50
52
};
51
53
 
52
 
HTMLTableSectionElement* toHTMLTableSectionElement(JSC::JSValuePtr);
 
54
HTMLTableSectionElement* toHTMLTableSectionElement(JSC::JSValue);
53
55
 
54
56
class JSHTMLTableSectionElementPrototype : public JSC::JSObject {
 
57
    typedef JSC::JSObject Base;
55
58
public:
56
59
    static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
57
60
    virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
58
61
    static const JSC::ClassInfo s_info;
59
62
    virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
60
 
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValuePtr prototype)
 
63
    virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
 
64
    static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
61
65
    {
62
 
        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType));
 
66
        return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, JSC::HasDefaultMark));
63
67
    }
64
 
    JSHTMLTableSectionElementPrototype(PassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
 
68
    JSHTMLTableSectionElementPrototype(NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObject(structure) { }
65
69
};
66
70
 
67
71
// Functions
68
72
 
69
 
JSC::JSValuePtr jsHTMLTableSectionElementPrototypeFunctionInsertRow(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr, const JSC::ArgList&);
70
 
JSC::JSValuePtr jsHTMLTableSectionElementPrototypeFunctionDeleteRow(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr, const JSC::ArgList&);
 
73
JSC::JSValue JSC_HOST_CALL jsHTMLTableSectionElementPrototypeFunctionInsertRow(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, const JSC::ArgList&);
 
74
JSC::JSValue JSC_HOST_CALL jsHTMLTableSectionElementPrototypeFunctionDeleteRow(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, const JSC::ArgList&);
71
75
// Attributes
72
76
 
73
 
JSC::JSValuePtr jsHTMLTableSectionElementAlign(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
74
 
void setJSHTMLTableSectionElementAlign(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr);
75
 
JSC::JSValuePtr jsHTMLTableSectionElementCh(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
76
 
void setJSHTMLTableSectionElementCh(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr);
77
 
JSC::JSValuePtr jsHTMLTableSectionElementChOff(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
78
 
void setJSHTMLTableSectionElementChOff(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr);
79
 
JSC::JSValuePtr jsHTMLTableSectionElementVAlign(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
80
 
void setJSHTMLTableSectionElementVAlign(JSC::ExecState*, JSC::JSObject*, JSC::JSValuePtr);
81
 
JSC::JSValuePtr jsHTMLTableSectionElementRows(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
82
 
JSC::JSValuePtr jsHTMLTableSectionElementConstructor(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
77
JSC::JSValue jsHTMLTableSectionElementAlign(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
78
void setJSHTMLTableSectionElementAlign(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
 
79
JSC::JSValue jsHTMLTableSectionElementCh(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
80
void setJSHTMLTableSectionElementCh(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
 
81
JSC::JSValue jsHTMLTableSectionElementChOff(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
82
void setJSHTMLTableSectionElementChOff(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
 
83
JSC::JSValue jsHTMLTableSectionElementVAlign(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
84
void setJSHTMLTableSectionElementVAlign(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
 
85
JSC::JSValue jsHTMLTableSectionElementRows(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
 
86
JSC::JSValue jsHTMLTableSectionElementConstructor(JSC::ExecState*, const JSC::Identifier&, const JSC::PropertySlot&);
83
87
 
84
88
} // namespace WebCore
85
89