diff -r 000000000000 -r dd21522fd290 webengine/osswebengine/DerivedSources/WebCore/JSHTMLParamElement.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/webengine/osswebengine/DerivedSources/WebCore/JSHTMLParamElement.cpp Mon Mar 30 12:54:55 2009 +0300 @@ -0,0 +1,192 @@ +/* + This file is part of the WebKit open source project. + This file has been generated by generate-bindings.pl. DO NOT MODIFY! + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "config.h" + +#include "JSHTMLParamElement.h" + +#include + +#include "HTMLParamElement.h" +#include "PlatformString.h" + +using namespace KJS; + +namespace WebCore { + +/* Hash table */ + +static const HashEntry JSHTMLParamElementTableEntries[] = +{ + { "name", JSHTMLParamElement::NameAttrNum, DontDelete, 0, 0 }, + { "valueType", JSHTMLParamElement::ValueTypeAttrNum, DontDelete, 0, 0 }, + { "value", JSHTMLParamElement::ValueAttrNum, DontDelete, 0, &JSHTMLParamElementTableEntries[5] }, + { "type", JSHTMLParamElement::TypeAttrNum, DontDelete, 0, 0 }, + { 0, 0, 0, 0, 0 }, + { "constructor", JSHTMLParamElement::ConstructorAttrNum, DontDelete|DontEnum|ReadOnly, 0, 0 } +}; + +static const HashTable JSHTMLParamElementTable = +{ + 2, 6, JSHTMLParamElementTableEntries, 5 +}; + +/* Hash table for constructor */ + +static const HashEntry JSHTMLParamElementConstructorTableEntries[] = +{ + { 0, 0, 0, 0, 0 } +}; + +static const HashTable JSHTMLParamElementConstructorTable = +{ + 2, 1, JSHTMLParamElementConstructorTableEntries, 1 +}; + +class JSHTMLParamElementConstructor : public DOMObject { +public: + JSHTMLParamElementConstructor(ExecState* exec) + { + setPrototype(exec->lexicalInterpreter()->builtinObjectPrototype()); + putDirect(exec->propertyNames().prototype, JSHTMLParamElementPrototype::self(exec), None); + } + virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); + JSValue* getValueProperty(ExecState*, int token) const; + virtual const ClassInfo* classInfo() const { return &info; } + static const ClassInfo info; + + virtual bool implementsHasInstance() const { return true; } +}; + +const ClassInfo JSHTMLParamElementConstructor::info = { "HTMLParamElementConstructor", 0, &JSHTMLParamElementConstructorTable, 0 }; + +bool JSHTMLParamElementConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSHTMLParamElementConstructorTable, this, propertyName, slot); +} + +JSValue* JSHTMLParamElementConstructor::getValueProperty(ExecState*, int token) const +{ + // The token is the numeric value of its associated constant + return jsNumber(token); +} + +/* Hash table for prototype */ + +static const HashEntry JSHTMLParamElementPrototypeTableEntries[] = +{ + { 0, 0, 0, 0, 0 } +}; + +static const HashTable JSHTMLParamElementPrototypeTable = +{ + 2, 1, JSHTMLParamElementPrototypeTableEntries, 1 +}; + +const ClassInfo JSHTMLParamElementPrototype::info = { "HTMLParamElementPrototype", 0, &JSHTMLParamElementPrototypeTable, 0 }; + +JSObject* JSHTMLParamElementPrototype::self(ExecState* exec) +{ + return KJS::cacheGlobalObject(exec, "[[JSHTMLParamElement.prototype]]"); +} + +const ClassInfo JSHTMLParamElement::info = { "HTMLParamElement", &JSHTMLElement::info, &JSHTMLParamElementTable, 0 }; + +JSHTMLParamElement::JSHTMLParamElement(ExecState* exec, HTMLParamElement* impl) + : JSHTMLElement(exec, impl) +{ + setPrototype(JSHTMLParamElementPrototype::self(exec)); +} + +bool JSHTMLParamElement::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSHTMLParamElementTable, this, propertyName, slot); +} + +JSValue* JSHTMLParamElement::getValueProperty(ExecState* exec, int token) const +{ + switch (token) { + case NameAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + return jsString(imp->name()); + } + case TypeAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + return jsString(imp->type()); + } + case ValueAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + return jsString(imp->value()); + } + case ValueTypeAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + return jsString(imp->valueType()); + } + case ConstructorAttrNum: + return getConstructor(exec); + } + return 0; +} + +void JSHTMLParamElement::put(ExecState* exec, const Identifier& propertyName, JSValue* value, int attr) +{ + lookupPut(exec, propertyName, value, attr, &JSHTMLParamElementTable, this); +} + +void JSHTMLParamElement::putValueProperty(ExecState* exec, int token, JSValue* value, int /*attr*/) +{ + switch (token) { + case NameAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + imp->setName(valueToStringWithNullCheck(exec, value)); + break; + } + case TypeAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + imp->setType(valueToStringWithNullCheck(exec, value)); + break; + } + case ValueAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + imp->setValue(valueToStringWithNullCheck(exec, value)); + break; + } + case ValueTypeAttrNum: { + HTMLParamElement* imp = static_cast(impl()); + + imp->setValueType(valueToStringWithNullCheck(exec, value)); + break; + } + } +} + +JSValue* JSHTMLParamElement::getConstructor(ExecState* exec) +{ + return KJS::cacheGlobalObject(exec, "[[HTMLParamElement.constructor]]"); +} + +}