eclipse is reporting an error like this :
"com.example.server.domainmodel.SomeEntity" 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.
in the class
package com.example.shared.proxies;
@ProxyFor(com.example.server.domainmodel.SomeEntity.class)
public interface SomeEntityProxy extends EntityProxy {
public Date getMemberSince();
public void setMemberSince(Date scheduled);
}
My module defines "client" and "shared" as source paths
SomeEntity.class is on the server path, outside the source paths;
SomeEntityProxy is on the shared path, for both client and server
I think this problem is a false positive reported by the Eclipse
Plugin ?
--
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.