I don't know if this will help, but check your paths.

If you have a source path like this:
C:\Workspace\App\src\com\me\app:
- App.gwt.xml
- App.java

Where App.gwt.xml reads:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.0//
EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-
source/core/src/gwt-module.dtd">
<module rename-to='app'>
  <inherits name='com.google.gwt.user.User'/>
  <inherits name='com.google.gwt.user.theme.standard.Standard'/>
  <entry-point class='com.me.app.App'/>
</module>

You will get an error like this:
Compiling module com.me.app.App
   Computing all possible rebind results for 'com.me.app.App'
      Rebinding com.me.app.App
         Checking rule <generate-with
class='com.google.gwt.user.rebind.ui.ImageBundleGenerator'/>
            [ERROR] Unable to find type 'com.me.app.App'
               [ERROR] Hint: Previous compiler errors may have made
this type unavailable

This is because GWT is (very) not smart, and cannot locate classes in
the small path as the gwt.xml file (notice how the template projects
always have a client and server directory).

So fix this, change the class path of App.java to:
C:\Workspace\App\src\com\me\app\client

And the entry point to:
<entry-point class='com.me.app.client.App'/>

This may not be the problem you have, but it sounds quite similar.


Don't worry. It's not just you. I've never come across a good
explanation of why this happens.


~
Doug.

On Jul 24, 6:44 pm, BMax <[email protected]> wrote:
> Thanks mirceade!
> Now, after your post, I'm really so happy! Fortunately you exist!!!
>
> However, there is someone (smarter than mirceade) who can help me?
>
> Bye, Max
>
> On 24 Lug, 10:20, mirceade <[email protected]> wrote:
>
> > Read the manual, read the errors, learn English, get a life.
>
> > On Jul 23, 2:46 pm, BMax <[email protected]> wrote:
>
> > > Hi, I post here my module xml code:
>
> > > <module>
>
> > >         <inherits name='com.google.gwt.user.User'/>
>
> > >         <inherits name='com.gwtext.GwtExt' />
>
> > >         <entry-point class='org.xlab.semantic.gwtext.client.Sisma'/>
>
> > >         <stylesheet src="js/ext/resources/css/ext-all.css" />
> > >         <script src="js/ext/adapter/ext/ext-base.js" />
> > >         <script src="js/ext/ext-all.js" />
>
> > >         <inherits name='com.google.gwt.user.theme.standard.Standard'/>
>
> > >         <servlet path="/sismaService"
> > > class="org.xlab.semantic.gwtext.server.SismaServiceImpl"/>
>
> > >         <stylesheet src="Sisma.css"/>
>
> > > </module>
>
> > > I think that it's good...!
> > > Bye, Max
>
> > > On 23 Lug, 13:27, Norman Maurer <[email protected]> wrote:
>
> > > > Hi,
>
> > > > like stated in the error message... Do you have am inherits statment
> > > > for "org.xlab.semantic.gwtext.client.Sisma" ?
>
> > > > Bye,
> > > > Norman
>
> > > > 2009/7/23 BMax <[email protected]>:
>
> > > > > Hi guys,
> > > > > please help me! I have to finish an important work but now my project
> > > > > is blocked by this error:
>
> > > > > Checking rule <generate-with
> > > > > class='com.google.gwt.user.rebind.ui.ImageBundleGenerator'/>
> > > > >            [ERROR]Unabletofindtype
> > > > > 'org.xlab.semantic.gwtext.client.Sisma'
> > > > >               [ERROR] Hint: Previous compiler errors may have made
> > > > > thistypeunavailable
> > > > >               [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
>
> > > > > I readed other post about this problem but I didn'tfinda solution!
>
> > > > > Thanks, Max

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to