kjs Library API Documentation

error_object.h

00001 // -*- c-basic-offset: 2 -*-
00002 /*
00003  *  This file is part of the KDE libraries
00004  *  Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
00005  *
00006  *  This library is free software; you can redistribute it and/or
00007  *  modify it under the terms of the GNU Lesser General Public
00008  *  License as published by the Free Software Foundation; either
00009  *  version 2 of the License, or (at your option) any later version.
00010  *
00011  *  This library is distributed in the hope that it will be useful,
00012  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014  *  Lesser General Public License for more details.
00015  *
00016  *  You should have received a copy of the GNU Lesser General Public
00017  *  License along with this library; if not, write to the Free Software
00018  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00019  *
00020  *  $Id: error_object.h,v 1.10 2002/06/19 08:20:59 domi Exp $
00021  */
00022 
00023 #ifndef _ERROR_OBJECT_H_
00024 #define _ERROR_OBJECT_H_
00025 
00026 #include "internal.h"
00027 #include "function_object.h"
00028 
00029 namespace KJS {
00030 
00031   class ErrorPrototypeImp : public ObjectImp {
00032   public:
00033     ErrorPrototypeImp(ExecState *exec,
00034                       ObjectPrototypeImp *objectProto,
00035                       FunctionPrototypeImp *funcProto);
00036   };
00037 
00038   class ErrorProtoFuncImp : public InternalFunctionImp {
00039   public:
00040     ErrorProtoFuncImp(ExecState *exec, FunctionPrototypeImp *funcProto);
00041     virtual bool implementsCall() const;
00042     virtual Value call(ExecState *exec, Object &thisObj, const List &args);
00043   };
00044 
00045   class ErrorObjectImp : public InternalFunctionImp {
00046   public:
00047     ErrorObjectImp(ExecState *exec, FunctionPrototypeImp *funcProto,
00048                    ErrorPrototypeImp *errorProto);
00049 
00050     virtual bool implementsConstruct() const;
00051     virtual Object construct(ExecState *exec, const List &args);
00052 
00053     virtual bool implementsCall() const;
00054     virtual Value call(ExecState *exec, Object &thisObj, const List &args);
00055   };
00056 
00057 
00058 
00059 
00060 
00061   class NativeErrorPrototypeImp : public ObjectImp {
00062   public:
00063     NativeErrorPrototypeImp(ExecState *exec, ErrorPrototypeImp *errorProto,
00064                             ErrorType et, UString name, UString message);
00065   private:
00066     ErrorType errType;
00067   };
00068 
00069   class NativeErrorImp : public InternalFunctionImp {
00070   public:
00071     NativeErrorImp(ExecState *exec, FunctionPrototypeImp *funcProto,
00072                    const Object &prot);
00073 
00074     virtual bool implementsConstruct() const;
00075     virtual Object construct(ExecState *exec, const List &args);
00076     virtual bool implementsCall() const;
00077     virtual Value call(ExecState *exec, Object &thisObj, const List &args);
00078 
00079     virtual void mark();
00080 
00081     virtual const ClassInfo *classInfo() const { return &info; }
00082     static const ClassInfo info;
00083   private:
00084     ObjectImp *proto;
00085   };
00086 
00087 }; // namespace
00088 
00089 #endif
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.0.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Wed Oct 8 12:21:14 2003 by doxygen 1.2.18 written by Dimitri van Heesch, © 1997-2001