It may not be a very deep break but I have found it funny:
Try this:
import net.rim.*;
import java.io.*;
public class Program
{
public static void main(String[] args)
{
net.rim.tools.a.a.a(args);
}
}
as argument for this small console app use full path to any cod file like c:\net_os_rim.cod. The result will be a funny xml file with dumped class and method refs.
for some reason javac produces an error when trying to compile this small app. It seems that changing import string from net.rim.* to net.rim.tools.a.a.* solves the problem.
I am unable to get this test app to work. I am getting an error:
Exception in thread “main” java.lang.NoClassDefFoundError: net/rim/tools/a/a
at Program.main(Program.java:13)
Any ideas?