i tried doing something like :
public abstract class MyEntryPoint implements EntryPoint{ @Override public abstract void onModuleLoad(); // My custome methods... } public class GWTTest extends MyEntryPoint { @Override public void onModuleLoad() { // code goes here.... } } Compiling module antshpra.gwt.GWTTest Refreshing module from source Validating newly compiled units Removing units with errors [ERROR] Errors in 'file:/D:/Eclipse/Workspace/My%20Site%201.2/src/antshpra/gwt/client/GWTTest.java' [ERROR] Line 15: No source code is available for type antshpra.mylib.gwt.client.MyEntryPoint; did you forget to inherit a required module? Computing all possible rebind results for 'antshpra.gwt.client.GWTTest' Rebinding antshpra.gwt.client.GWTTest Checking rule <generate-with class='com.google.gwt.user.rebind.ui.ImageBundleGenerator'/> [ERROR] Unable to find type 'antshpra.gwt.client.GWTTest' [ERROR] Hint: Previous compiler errors may have made this type unavailable [ERROR] 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 do i need to add something to .gwt.xml file to tell gwt about inheritance hierarchy ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---