> Now do you know an easy way to convert > java.lang.object[] or whatever to > the signature style [Ljava.lang.Object; (other then > string > manipulation)? Otherwise, I'll write a conversion > function.
class literal works also on arrays. You can always write System.out.println(String[][][][][].class.getName()); which yields [[[[[Ljava.lang.String; If you're dealing with an instance of an array, you can always use the Object.getClass() method since all array instances are objects in Java. -- Juha _________________________________________________________ View thread online: http://main.jboss.org/thread.jsp?forum=66&thread=9544 _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
