com.lightspeed.web error vs com.light.web code? If you are trying to use "web" as a library, you need to make sure you're inheriting the xml file. Is your xml file for "web" called "weblib.gwt.xml", as this is what the inherit statement is looking for.
On May 4, 6:56 am, pragupt <[email protected]> wrote: > Hi, > > I have a GWT project and a Web project, my web project contains > several classes in the package structure as below > > src > com > light > web > a.java > b.java > c.java > d.java > e.java > f.java > many classes... > many packages..... > > I have put my module xml file under package light since I want to > access d.java file > <?xml version="1.0" encoding="UTF-8"?> > <module> > <source path="web" /> > </module> > > and also I have added the require entry to my <GWT - Project>.gwt.xml > file > <inherits name='com.light.weblib' /> > > but getting the below error > Finding entry point classes > [ERROR] Unable to find type > 'com.lightspeed.web.dbm.client.TranrevGWT' > [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 > > can anybody teel me what I am doing wrong?? > and is there any way to access a specific class under my web package > without including other classes (i.e. can I access only d.java file > without inluding other ones) ?? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
