diff options
author | Mario Torre <neugens@limasoftware.net> | 2008-02-09 18:57:21 +0000 |
---|---|---|
committer | Mario Torre <neugens@limasoftware.net> | 2008-02-09 18:57:21 +0000 |
commit | d7305c7400c3a4dda07a2a539563f52f392f375d (patch) | |
tree | 03749d4e40b5ef13dc49f947fed8f681fb359710 | |
parent | 7d707ffb5c896ed4000d000452427c333019fcd0 (diff) | |
download | classpath-d7305c7400c3a4dda07a2a539563f52f392f375d.tar.gz |
2008-02-09 Mario Torre <neugens@limasoftware.net>
* include/java_util_VMTimeZone.h: Removed.
* native/jni/gconf-peer/GConfNativePeer.c: all native methods, replaced
GConfEngine with GConfClient and use GConfClient API instead.
-rw-r--r-- | .cproject | 13 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | include/java_util_VMTimeZone.h | 19 | ||||
-rw-r--r-- | native/jni/gconf-peer/GConfNativePeer.c | 32 |
4 files changed, 35 insertions, 35 deletions
diff --git a/.cproject b/.cproject new file mode 100644 index 000000000..f7415a486 --- /dev/null +++ b/.cproject @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<?fileVersion 4.0.0?> + +<cproject> +<storageModule moduleId="org.eclipse.cdt.core.settings"> +<cconfiguration id="converted.config.1290436310"> +<storageModule buildSystemId="org.eclipse.cdt.core.defaultConfigDataProvider" id="converted.config.1290436310" moduleId="org.eclipse.cdt.core.settings" name="convertedConfig"> +<externalSettings/> +<extensions/> +</storageModule> +</cconfiguration> +</storageModule> +</cproject> @@ -1,3 +1,9 @@ +2008-02-09 Mario Torre <neugens@limasoftware.net> + + * include/java_util_VMTimeZone.h: Removed. + * native/jni/gconf-peer/GConfNativePeer.c: all native methods, replaced + GConfEngine with GConfClient and use GConfClient API instead. + 2008-02-08 Mark Wielaard <mark@klomp.org> * m4/acinclude.m4 (CLASSPATH_CHECK_JAVAC): Delete diff --git a/include/java_util_VMTimeZone.h b/include/java_util_VMTimeZone.h deleted file mode 100644 index 8431e67b4..000000000 --- a/include/java_util_VMTimeZone.h +++ /dev/null @@ -1,19 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __java_util_VMTimeZone__ -#define __java_util_VMTimeZone__ - -#include <jni.h> - -#ifdef __cplusplus -extern "C" -{ -#endif - -JNIEXPORT jstring JNICALL Java_java_util_VMTimeZone_getSystemTimeZoneId (JNIEnv *env, jclass); - -#ifdef __cplusplus -} -#endif - -#endif /* __java_util_VMTimeZone__ */ diff --git a/native/jni/gconf-peer/GConfNativePeer.c b/native/jni/gconf-peer/GConfNativePeer.c index 3564f9b69..a53bbad75 100644 --- a/native/jni/gconf-peer/GConfNativePeer.c +++ b/native/jni/gconf-peer/GConfNativePeer.c @@ -55,8 +55,8 @@ /** Reference count */ static int reference_count = 0; -/** GConfEngine backend */ -static GConfEngine *engine = NULL; +/** GConfClient backend */ +static GConfClient *client = NULL; /** java.util.ArrayList class */ static jclass jlist_class = NULL; @@ -70,7 +70,7 @@ static jmethodID jlist_add_id = NULL; /* ***** PRIVATE FUNCTIONS DELCARATION ***** */ /** - * Gets the reference of the default GConfEngine.. + * Gets the reference of the default GConfClient.. * The client reference should be released with g_object_unref after use. */ static void init_gconf (void); @@ -133,12 +133,12 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_init_1id_1cache init_gconf (); - /* if engine is null, there is probably an out of memory */ - if (engine == NULL) + /* if client is null, there is probably an out of memory */ + if (client == NULL) { /* release the string and throw a runtime exception */ throw_exception (env, - "Unable to initialize GConfEngine in native code\n"); + "Unable to initialize GConfClient in native code\n"); return; } @@ -179,7 +179,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1all_1keys return NULL; } - entries = gconf_engine_all_entries (engine, dir, &err); + entries = gconf_client_all_entries (client, dir, &err); if (err != NULL) { throw_exception_by_name (env, "java/util/prefs/BackingStoreException", @@ -253,7 +253,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1all_1nodes return NULL; } - entries = gconf_engine_all_dirs (engine, dir, &err); + entries = gconf_client_all_dirs (client, dir, &err); if (err != NULL) { throw_exception_by_name (env, "java/util/prefs/BackingStoreException", @@ -312,7 +312,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1suggest_1sync { GError *err = NULL; - gconf_engine_suggest_sync (engine, &err); + gconf_client_suggest_sync (client, &err); if (err != NULL) { throw_exception_by_name (env, "java/util/prefs/BackingStoreException", @@ -341,7 +341,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1unset return JNI_FALSE; } - result = gconf_engine_unset (engine, _key, &err); + result = gconf_client_unset (client, _key, &err); if (err != NULL) { result = JNI_FALSE; @@ -374,7 +374,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1get_1string return NULL; } - _value = gconf_engine_get_string (engine, _key, &err); + _value = gconf_client_get_string (client, _key, &err); JCL_free_cstring (env, key, _key); if (err != NULL) { @@ -394,7 +394,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1get_1string g_free ((gpointer) _value); } - gconf_engine_suggest_sync (engine, NULL); + gconf_client_suggest_sync (client, NULL); return result; } @@ -423,7 +423,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1set_1string return JNI_FALSE; } - result = gconf_engine_set_string (engine, _key, _value, &err); + result = gconf_client_set_string (client, _key, _value, &err); if (err != NULL) { g_error_free (err); @@ -455,7 +455,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_gconf_1dir_1exists return value; /* on error return false */ - value = gconf_engine_dir_exists (engine, dir, &err); + value = gconf_client_dir_exists (client, dir, &err); if (err != NULL) value = JNI_FALSE; @@ -476,7 +476,7 @@ Java_gnu_java_util_prefs_gconf_GConfNativePeer_finalize_1class if (reference_count == 0) { /* last reference, free all resources and return */ - g_object_unref (G_OBJECT (engine)); + g_object_unref (G_OBJECT (client)); (*env)->DeleteGlobalRef (env, jlist_class); @@ -571,7 +571,7 @@ throw_exception_by_name (JNIEnv *env, const char *name, const char *msg) static void init_gconf (void) { - engine = gconf_engine_get_default (); + client = gconf_client_get_default (); } static gboolean set_jlist_class (JNIEnv *env) |