]> sjero.net Git - linphone/blob - java/impl/org/linphone/core/LpConfigImpl.java
208519955f9661c0933066c27a95f99971669503
[linphone] / java / impl / org / linphone / core / LpConfigImpl.java
1 /*
2 LPConfigImpl.java
3 Copyright (C) 2013  Belledonne Communications, Grenoble, France
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19 package org.linphone.core;
20
21
22
23 class LpConfigImpl implements LpConfig {
24
25         private final long nativePtr;
26         boolean ownPtr = false;
27         
28         public LpConfigImpl(long ptr) {
29                 nativePtr=ptr;
30         }
31         
32         private native long newLpConfigImpl(String file);
33         private native void delete(long ptr);
34         public LpConfigImpl(String file) {
35                 nativePtr = newLpConfigImpl(file);
36                 ownPtr = true;
37         }
38         protected void finalize() throws Throwable {
39                 if(ownPtr) {
40                         delete(nativePtr);
41                 }
42         }
43
44         private native void setInt(long ptr, String section, String key, int value);
45         public void setInt(String section, String key, int value) {
46                 setInt(nativePtr, section, key, value);
47         }
48
49 }