Hai ,
I want to provide TimeZone settings in my application(client application), So, I need to get the Time Zones from the browser using smart Gwt. Please tell me the methods for getting time zones. Actually I have written java coding in smart gwt application as follows,
String timezones[]=java.util.TimeZone.getAvailableIDs();
for(int i=0;i<(timezones.length)-1;i++)
{
System.out.println(timezones[i]);
}
but it is not worked out and it is throwing an Exception as follows...
1.
[ERROR] [timezoneproject] Line 32: No source code is available for type java.util.TimeZone; did you forget to inherit a required module
2.
[ERROR] [timezoneproject] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
Please give me a solution for this issue.
Thanks
I want to provide TimeZone settings in my application(client application), So, I need to get the Time Zones from the browser using smart Gwt. Please tell me the methods for getting time zones. Actually I have written java coding in smart gwt application as follows,
String timezones[]=java.util.TimeZone.getAvailableIDs();
for(int i=0;i<(timezones.length)-1;i++)
{
System.out.println(timezones[i]);
}
but it is not worked out and it is throwing an Exception as follows...
1.
[ERROR] [timezoneproject] Line 32: No source code is available for type java.util.TimeZone; did you forget to inherit a required module
2.
[ERROR] [timezoneproject] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
Please give me a solution for this issue.
Thanks
Comment