This is my current setup
src/
com
acme
Model.gwt.xml
model
token
Token.java
...
test/
super
com
acme
jre
java
lang
CloneNotSupportedException.java (introducing class since GWT
doesnt support it)
google
gwt
emul
java
lang
Character.java
(added a method that GWT doesn't support)
the super source path in Model.gwt.xml
is
<super-source path="jre"/>
when I compile, the compiler complains about errors in both
Errors in....Token.java
...isWhitespace(char) is undefined for the type Character
...No source code is available for type
java.lang.CloneNotSupportedException;
It appears its not picking up the things I emulated.
Following the GWT documentation I have also tried taking "jre" folder
in to src/com/acme/, ie literally in the same level has the module
xml. But doesnt work.
I read in a post that google's emul is picked up itself hence I put
both jre and google's stuff in super, but only included "jre" as super
source
I am using gwt-maven-plugin to compile and my pom.xml excerpt is
What am I doing wrong here?
--
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.