I did the steps mentioned on This Answer
but the page won’t appear and throws this error
[ERROR] - Line 45: No source code is available for type com.cbd.main.properties.UserProperties; did you forget to inherit a required module?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This error means that the GWT Java-to-JS compiler cannot access the source of the class. The class
com.cbd.main.properties.UserPropertieshas to be in your client package and the source has to be visible to the GWT Java-to-JS compiler.The compiler scans the source path (defined in the app’s module.gwt.XML) and all source paths from inherited modules. If it can’t find the source in there you get the above error.