Author: mturk
Date: Wed Apr 15 18:48:58 2009
New Revision: 765302

URL: http://svn.apache.org/viewvc?rev=765302&view=rev
Log:
Some API comments about JNI class naming

Modified:
    commons/sandbox/runtime/trunk/src/main/native/include/acr_clazz.h

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr_clazz.h
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr_clazz.h?rev=765302&r1=765301&r2=765302&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr_clazz.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr_clazz.h Wed Apr 
15 18:48:58 2009
@@ -38,8 +38,9 @@
  * @param lock Java Object use for synchronisation.
  * @param name JNI class name.
  * @remark Class name must follow the JNI convention of class naming
- * prefixing the class with 'L' and terminating it with ';'
- * eg. "Ljava.lang.String;"
+ * prefixing the class with 'L' and eventually terminating it with ';'
+ * eg. "Ljava/lang/String;" or "[[B"
+ * Consult the JNI manual for proper class naming.
  */
 ACR_DECLARE(jclass) ACR_AddClassToGlobalCache(JNIEnv *env,
                                               jobject lock, const char *name);


Reply via email to