Re: Cannot found source in GWT Project

2010-11-20 Thread Eric Clayberg
Give the latest GWT Designer 8.1 build a try...

http://code.google.com/webtoolkit/tools/download-gwtdesigner-beta.html

Also note that there is a preference for turning the enhanced
compilation checking on and off...


http://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/preferences_builder.html

On Nov 13, 12:52 pm, har_shan harsha...@gmail.com wrote:
 Hi Eric,

 Is this fixed in GWT designer or should we tweak something to not show
 the error. Please advice.

 Thanks.

 On Nov 2, 10:45 pm, eric73 e...@pentila.com wrote:







  On 25 oct, 14:59, AlexG alexander.gauss.ax...@googlemail.com wrote:

   Okay,

   the problem is solved.

   The problem was theGWTDesigner, the new Enhanced Compilation
   feature.
   I uninstalled theGWTDesginer and the Erros are gone now.

   Greets
   Alex

   On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:

Thanks for your reply,

so you can say, it´s a bug in the plugIn?

I don´t get any Errors when IGWTcompile, I have lots of Errors now
on several of my Projects, but everything seems to work as intended.
I think it´s very strange.
my collegue has the same Errors now too. We don´t know why they
appear.
I can only imagine a bug.

Greets
Alex

On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

 We had the same problem w/ both the recent download of theGWT2.1 SDK
 as well as the plugin w/ STS.  The fix was to download the 2.1
 snapshot and drop that into the folder for the SDK plugin (you can
 find the path inside of the error message you receive when youGWT
 compile).

 Odd that nobody else reported this We found it on the CellView
 package...

 On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
 wrote:

  Hi all,

  I am trying the RequestFactory since RC1 release. It seems, that
  everything was working fine, but since
  yesterday, I get strange Erros in only one of my Projects:

  mypackage.MyClass can not be found in source packages. Check the
  inheritance chain from yourmodule; it may not be inheriting a
  requiredmoduleor amodulemay not be adding its source path entries
  properly

  The Error is appearing at the @ProxyFor and the @Service annotation.
  The package, of the classes are:
  server.domain, the packages of the request and proxy
  are: client.request

  I don´t know, why Eclipse is saying, that the source code is 
  missing,
  I means it´s the same Project??

  Strange is to, that the Project is running in DeveleopementMode and 
  I
  deployed it too, and it works withoutt any
  Errors.

  Does anybody have an idea, whats going wrong?

  Thanks, Greets
  Alex

  Thanks a lot !!

  Eric

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-11-13 Thread har_shan
Hi Eric,

Is this fixed in GWT designer or should we tweak something to not show
the error. Please advice.

Thanks.

On Nov 2, 10:45 pm, eric73 e...@pentila.com wrote:
 On 25 oct, 14:59, AlexG alexander.gauss.ax...@googlemail.com wrote:









  Okay,

  the problem is solved.

  The problem was theGWTDesigner, the new Enhanced Compilation
  feature.
  I uninstalled theGWTDesginer and the Erros are gone now.

  Greets
  Alex

  On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:

   Thanks for your reply,

   so you can say, it´s a bug in the plugIn?

   I don´t get any Errors when IGWTcompile, I have lots of Errors now
   on several of my Projects, but everything seems to work as intended.
   I think it´s very strange.
   my collegue has the same Errors now too. We don´t know why they
   appear.
   I can only imagine a bug.

   Greets
   Alex

   On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

We had the same problem w/ both the recent download of theGWT2.1 SDK
as well as the plugin w/ STS.  The fix was to download the 2.1
snapshot and drop that into the folder for the SDK plugin (you can
find the path inside of the error message you receive when youGWT
compile).

Odd that nobody else reported this We found it on the CellView
package...

On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
wrote:

 Hi all,

 I am trying the RequestFactory since RC1 release. It seems, that
 everything was working fine, but since
 yesterday, I get strange Erros in only one of my Projects:

 mypackage.MyClass can not be found in source packages. Check the
 inheritance chain from yourmodule; it may not be inheriting a
 requiredmoduleor amodulemay not be adding its source path entries
 properly

 The Error is appearing at the @ProxyFor and the @Service annotation.
 The package, of the classes are:
 server.domain, the packages of the request and proxy
 are: client.request

 I don´t know, why Eclipse is saying, that the source code is missing,
 I means it´s the same Project??

 Strange is to, that the Project is running in DeveleopementMode and I
 deployed it too, and it works withoutt any
 Errors.

 Does anybody have an idea, whats going wrong?

 Thanks, Greets
 Alex

 Thanks a lot !!

 Eric

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-11-02 Thread ahawtho
Hi Eric,

I have a project with two source directories, src/ and test/ that also
refers to the JUnit 4 library.   The test/ directory refers to classes
in JUnit, and these references cause the can not be found errors.

I reproduced it by creating a new GWT project, adding the JUnit
library, and referring to JUnit classes from the client/ directory.
Here's the project structure:

src/pkg/Foo.gwt.xml
src/pkg/client/Foo.java
test/pkg/client/FooTest.java

FooTest.java looks like this:

package pkg.client;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
public class FooTest
{

}


And the error looks like this:

org.junit.runners.Suite can not be found in source packages. 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.   FooTest.java/GWTTesting/test/pkg/client line 5


Adam

On Oct 27, 9:37 am, Eric Clayberg clayb...@google.com wrote:
 It would be helpful to see a test case project that wil reproduce
 this.

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-11-02 Thread eric73


On 25 oct, 14:59, AlexG alexander.gauss.ax...@googlemail.com wrote:
 Okay,

 the problem is solved.

 The problem was the GWT Designer, the new Enhanced Compilation
 feature.
 I uninstalled the GWT Desginer and the Erros are gone now.

 Greets
 Alex

 On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:

  Thanks for your reply,

  so you can say, it´s a bug in the plugIn?

  I don´t get any Errors when I GWT compile, I have lots of Errors now
  on several of my Projects, but everything seems to work as intended.
  I think it´s very strange.
  my collegue has the same Errors now too. We don´t know why they
  appear.
  I can only imagine a bug.

  Greets
  Alex

  On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

   We had the same problem w/ both the recent download of the GWT 2.1 SDK
   as well as the plugin w/ STS.  The fix was to download the 2.1
   snapshot and drop that into the folder for the SDK plugin (you can
   find the path inside of the error message you receive when you GWT
   compile).

   Odd that nobody else reported this We found it on the CellView
   package...

   On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
   wrote:

Hi all,

I am trying the RequestFactory since RC1 release. It seems, that
everything was working fine, but since
yesterday, I get strange Erros in only one of my Projects:

mypackage.MyClass can not be found in source packages. 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

The Error is appearing at the @ProxyFor and the @Service annotation.
The package, of the classes are:
server.domain, the packages of the request and proxy
are: client.request

I don´t know, why Eclipse is saying, that the source code is missing,
I means it´s the same Project??

Strange is to, that the Project is running in DeveleopementMode and I
deployed it too, and it works withoutt any
Errors.

Does anybody have an idea, whats going wrong?

Thanks, Greets
Alex

Thanks a lot !!

Eric

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-10-27 Thread Eric Clayberg
It would be helpful to see a test case project that wil reproduce
this.

On Oct 25, 9:59 am, AlexG alexander.gauss.ax...@googlemail.com
wrote:
 Okay,

 the problem is solved.

 The problem was the GWT Designer, the new Enhanced Compilation
 feature.
 I uninstalled the GWT Desginer and the Erros are gone now.

 Greets
 Alex

 On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:







  Thanks for your reply,

  so you can say, it´s a bug in the plugIn?

  I don´t get any Errors when I GWT compile, I have lots of Errors now
  on several of my Projects, but everything seems to work as intended.
  I think it´s very strange.
  my collegue has the same Errors now too. We don´t know why they
  appear.
  I can only imagine a bug.

  Greets
  Alex

  On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

   We had the same problem w/ both the recent download of the GWT 2.1 SDK
   as well as the plugin w/ STS.  The fix was to download the 2.1
   snapshot and drop that into the folder for the SDK plugin (you can
   find the path inside of the error message you receive when you GWT
   compile).

   Odd that nobody else reported this We found it on the CellView
   package...

   On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
   wrote:

Hi all,

I am trying the RequestFactory since RC1 release. It seems, that
everything was working fine, but since
yesterday, I get strange Erros in only one of my Projects:

mypackage.MyClass can not be found in source packages. 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

The Error is appearing at the @ProxyFor and the @Service annotation.
The package, of the classes are:
server.domain, the packages of the request and proxy
are: client.request

I don´t know, why Eclipse is saying, that the source code is missing,
I means it´s the same Project??

Strange is to, that the Project is running in DeveleopementMode and I
deployed it too, and it works withoutt any
Errors.

Does anybody have an idea, whats going wrong?

Thanks, Greets
Alex

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-10-27 Thread Rud
I mentioned the same problem in
http://groups.google.com/group/google-web-toolkit/browse_frm/thread/48d776e472cffd05#

I tried the DynaTableRF project for learning RequestFactory. I created
an Eclipse project, deleted the Greeting stuff and copied the SRC 
WAR from the DTRf project. Then made all the adjustments to get
everything to compile. (Don't recall details but maybe adding libs,
etc.) I was left with the cannot find errors from the RequestFactory
classes.

I also had GWT Designer installed. I just uninstalled Designer and the
errors have gone away.

This should give you a text case project.

Rud
http://www.mysticlakesoftware.com

On Oct 27, 8:37 am, Eric Clayberg clayb...@google.com wrote:
 It would be helpful to see a test case project that wil reproduce
 this.

 On Oct 25, 9:59 am, AlexG alexander.gauss.ax...@googlemail.com
 wrote:







  Okay,

  the problem is solved.

  The problem was the GWT Designer, the new Enhanced Compilation
  feature.
  I uninstalled the GWT Desginer and the Erros are gone now.

  Greets
  Alex

  On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:

   Thanks for your reply,

   so you can say, it´s a bug in the plugIn?

   I don´t get any Errors when I GWT compile, I have lots of Errors now
   on several of my Projects, but everything seems to work as intended.
   I think it´s very strange.
   my collegue has the same Errors now too. We don´t know why they
   appear.
   I can only imagine a bug.

   Greets
   Alex

   On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

We had the same problem w/ both the recent download of the GWT 2.1 SDK
as well as the plugin w/ STS.  The fix was to download the 2.1
snapshot and drop that into the folder for the SDK plugin (you can
find the path inside of the error message you receive when you GWT
compile).

Odd that nobody else reported this We found it on the CellView
package...

On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
wrote:

 Hi all,

 I am trying the RequestFactory since RC1 release. It seems, that
 everything was working fine, but since
 yesterday, I get strange Erros in only one of my Projects:

 mypackage.MyClass can not be found in source packages. 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

 The Error is appearing at the @ProxyFor and the @Service annotation.
 The package, of the classes are:
 server.domain, the packages of the request and proxy
 are: client.request

 I don´t know, why Eclipse is saying, that the source code is missing,
 I means it´s the same Project??

 Strange is to, that the Project is running in DeveleopementMode and I
 deployed it too, and it works withoutt any
 Errors.

 Does anybody have an idea, whats going wrong?

 Thanks, Greets
 Alex

-- 
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-tool...@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.



Cannot found source in GWT Project

2010-10-25 Thread AlexG
Hi all,

I am trying the RequestFactory since RC1 release. It seems, that
everything was working fine, but since
yesterday, I get strange Erros in only one of my Projects:

mypackage.MyClass can not be found in source packages. 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

The Error is appearing at the @ProxyFor and the @Service annotation.
The package, of the classes are:
server.domain, the packages of the request and proxy
are: client.request

I don´t know, why Eclipse is saying, that the source code is missing,
I means it´s the same Project??

Strange is to, that the Project is running in DeveleopementMode and I
deployed it too, and it works withoutt any
Errors.

Does anybody have an idea, whats going wrong?

Thanks, Greets
Alex

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-10-25 Thread bodyboarder20
We had the same problem w/ both the recent download of the GWT 2.1 SDK
as well as the plugin w/ STS.  The fix was to download the 2.1
snapshot and drop that into the folder for the SDK plugin (you can
find the path inside of the error message you receive when you GWT
compile).

Odd that nobody else reported this We found it on the CellView
package...





On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
wrote:
 Hi all,

 I am trying the RequestFactory since RC1 release. It seems, that
 everything was working fine, but since
 yesterday, I get strange Erros in only one of my Projects:

 mypackage.MyClass can not be found in source packages. 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

 The Error is appearing at the @ProxyFor and the @Service annotation.
 The package, of the classes are:
 server.domain, the packages of the request and proxy
 are: client.request

 I don´t know, why Eclipse is saying, that the source code is missing,
 I means it´s the same Project??

 Strange is to, that the Project is running in DeveleopementMode and I
 deployed it too, and it works withoutt any
 Errors.

 Does anybody have an idea, whats going wrong?

 Thanks, Greets
 Alex

-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-10-25 Thread AlexG
Thanks for your reply,

so you can say, it´s a bug in the plugIn?

I don´t get any Errors when I GWT compile, I have lots of Errors now
on several of my Projects, but everything seems to work as intended.
I think it´s very strange.
my collegue has the same Errors now too. We don´t know why they
appear.
I can only imagine a bug.

Greets
Alex



On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:
 We had the same problem w/ both the recent download of the GWT 2.1 SDK
 as well as the plugin w/ STS.  The fix was to download the 2.1
 snapshot and drop that into the folder for the SDK plugin (you can
 find the path inside of the error message you receive when you GWT
 compile).

 Odd that nobody else reported this We found it on the CellView
 package...

 On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
 wrote:

  Hi all,

  I am trying the RequestFactory since RC1 release. It seems, that
  everything was working fine, but since
  yesterday, I get strange Erros in only one of my Projects:

  mypackage.MyClass can not be found in source packages. 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

  The Error is appearing at the @ProxyFor and the @Service annotation.
  The package, of the classes are:
  server.domain, the packages of the request and proxy
  are: client.request

  I don´t know, why Eclipse is saying, that the source code is missing,
  I means it´s the same Project??

  Strange is to, that the Project is running in DeveleopementMode and I
  deployed it too, and it works withoutt any
  Errors.

  Does anybody have an idea, whats going wrong?

  Thanks, Greets
  Alex



-- 
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-tool...@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.



Re: Cannot found source in GWT Project

2010-10-25 Thread AlexG
Okay,

the problem is solved.

The problem was the GWT Designer, the new Enhanced Compilation
feature.
I uninstalled the GWT Desginer and the Erros are gone now.

Greets
Alex


On 25 Okt., 15:08, AlexG alexander.gauss.ax...@googlemail.com wrote:
 Thanks for your reply,

 so you can say, it´s a bug in the plugIn?

 I don´t get any Errors when I GWT compile, I have lots of Errors now
 on several of my Projects, but everything seems to work as intended.
 I think it´s very strange.
 my collegue has the same Errors now too. We don´t know why they
 appear.
 I can only imagine a bug.

 Greets
 Alex

 On 25 Okt., 14:45, bodyboarder20 shieldsja...@gmail.com wrote:

  We had the same problem w/ both the recent download of the GWT 2.1 SDK
  as well as the plugin w/ STS.  The fix was to download the 2.1
  snapshot and drop that into the folder for the SDK plugin (you can
  find the path inside of the error message you receive when you GWT
  compile).

  Odd that nobody else reported this We found it on the CellView
  package...

  On Oct 25, 3:47 am, AlexG alexander.gauss.ax...@googlemail.com
  wrote:

   Hi all,

   I am trying the RequestFactory since RC1 release. It seems, that
   everything was working fine, but since
   yesterday, I get strange Erros in only one of my Projects:

   mypackage.MyClass can not be found in source packages. 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

   The Error is appearing at the @ProxyFor and the @Service annotation.
   The package, of the classes are:
   server.domain, the packages of the request and proxy
   are: client.request

   I don´t know, why Eclipse is saying, that the source code is missing,
   I means it´s the same Project??

   Strange is to, that the Project is running in DeveleopementMode and I
   deployed it too, and it works withoutt any
   Errors.

   Does anybody have an idea, whats going wrong?

   Thanks, Greets
   Alex



-- 
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-tool...@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.