|
module names not correctly translated while generating directories in Java
Hi,
I have captialized Module names and the directories are generated all lower case.
For e.g:
[["java:package:com.testing"]]
module Print {
class Data {
string name;
int number;
};
interface Printer {
void printString(Data s);
};
};
I see com.testing.Print as the package imports and definitions in the files generated but the directories generated are all lower case.
I am on Win2K, ICE 1.5.1, JDK 1.4.2.
Thanks,
--Venkat.
|