merge the formfield patch from ooo-build
[ooovba.git] / connectivity / source / drivers / jdbc / Class.cxx
blob0349e79303980359b2bfe7cdf9180b42677206a4
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: Class.cxx,v $
10 * $Revision: 1.14 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_connectivity.hxx"
33 #include "java/lang/Class.hxx"
34 #include "java/tools.hxx"
35 #include <rtl/ustring.hxx>
37 using namespace connectivity;
38 //**************************************************************
39 //************ Class: java.lang.Class
40 //**************************************************************
42 jclass java_lang_Class::theClass = 0;
44 java_lang_Class::~java_lang_Class()
47 jclass java_lang_Class::getMyClass() const
49 // die Klasse muss nur einmal geholt werden, daher statisch
50 if( !theClass )
51 theClass = findMyClass("java/lang/Class");
52 return theClass;
55 java_lang_Class * java_lang_Class::forName( const ::rtl::OUString& _par0 )
57 jobject out(NULL);
58 SDBThreadAttach t;
61 ::rtl::OString sClassName = ::rtl::OUStringToOString(_par0, RTL_TEXTENCODING_JAVA_UTF8);
62 sClassName = sClassName.replace('.','/');
63 out = t.pEnv->FindClass(sClassName);
64 ThrowSQLException(t.pEnv,0);
65 } //t.pEnv
66 // ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
67 return out==0 ? NULL : new java_lang_Class( t.pEnv, out );
70 jobject java_lang_Class::newInstanceObject()
72 SDBThreadAttach t;
73 static jmethodID mID(NULL);
74 return callObjectMethod(t.pEnv,"newInstance","()Ljava/lang/Object;", mID);