I have a custom widgetset (with one custom widget) in my application. It worked with Vaadin 6.1.x but now I don’t seem to get it working with Vaadin 6.2.x
I’ve altered the xml’s and codes as suggested in The Book and compared my code with for example the SuperImmediateTextField in incubator. So the problem must be with the gwt compiling.
It seems that my ant script first compiles the java classes and then runs the gwt compiler (with compiled widget classes in the classpath), but I still get the “Widgetset does not contain implementation for …” error.
Any tips where I should go digging deeper? What is the file that contains the component mappings after compiling?
And btw, I’m not using Eclipse so don’t bother suggesting to use the Vaadin plugins there
The GWT compiler doesn’t need the Java compiled .class files, it needs the original .java source files. Make sure those are on the classpath for the GWT compiler.