Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "java/math/BigDecimal.hxx"
21 : #include "java/tools.hxx"
22 : #include "resource/jdbc_log.hrc"
23 : using namespace connectivity;
24 :
25 : //************ Class: java.lang.Boolean
26 :
27 :
28 : jclass java_math_BigDecimal::theClass = 0;
29 :
30 0 : java_math_BigDecimal::~java_math_BigDecimal()
31 0 : {}
32 :
33 0 : jclass java_math_BigDecimal::getMyClass() const
34 : {
35 : // the class must be fetched only once, therefore static
36 0 : if( !theClass )
37 0 : theClass = findMyClass("java/math/BigDecimal");
38 0 : return theClass;
39 : }
40 :
41 0 : java_math_BigDecimal::java_math_BigDecimal( const OUString& _par0 ): java_lang_Object( NULL, (jobject)NULL )
42 : {
43 0 : SDBThreadAttach t;
44 0 : if( !t.pEnv )
45 0 : return;
46 : // Java-Call for the Constructor
47 : // initialize temporary Variable
48 : static const char * cSignature = "(Ljava/lang/String;)V";
49 : jobject tempObj;
50 : static jmethodID mID(NULL);
51 0 : obtainMethodId(t.pEnv, "<init>",cSignature, mID);
52 :
53 0 : jstring str = convertwchar_tToJavaString(t.pEnv,_par0.replace(',','.'));
54 0 : tempObj = t.pEnv->NewObject( getMyClass(), mID, str );
55 0 : t.pEnv->DeleteLocalRef(str);
56 0 : saveRef( t.pEnv, tempObj );
57 0 : t.pEnv->DeleteLocalRef( tempObj );
58 0 : ThrowSQLException( t.pEnv, NULL );
59 : // and cleanup
60 : }
61 :
62 0 : java_math_BigDecimal::java_math_BigDecimal( const double& _par0 ): java_lang_Object( NULL, (jobject)NULL )
63 : {
64 0 : SDBThreadAttach t;
65 0 : if( !t.pEnv )
66 0 : return;
67 : // Java-Call for the Constructor
68 : // initialize temporary Variable
69 : static const char * cSignature = "(D)V";
70 : jobject tempObj;
71 : static jmethodID mID(NULL);
72 0 : obtainMethodId(t.pEnv, "<init>",cSignature, mID);
73 0 : tempObj = t.pEnv->NewObject( getMyClass(), mID, _par0 );
74 0 : saveRef( t.pEnv, tempObj );
75 0 : t.pEnv->DeleteLocalRef( tempObj );
76 0 : ThrowSQLException( t.pEnv, NULL );
77 : // and cleanup
78 : }
79 :
80 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|