J'ai essayé de rechercher, mais je n'ai pas pu définir de manière précise comment ajouter vos propres packages à un projet GWT.Ajout de packages Java à GWT
Ma structure d'arbre ressemble à ceci:
-com.mycompany
-public
MyApplication.html
MyApplication.gwt.xml
-com.mycompany.client
MyApp.java
-com.mycompany.gui
TableLayout.java
La réponse que je l'ai vu, dit là-bas pour ajouter les packages par rapport au répertoire racine du fichier gwt.xml, comme ceci:
<module>
<inherits name="com.google.gwt.user.User" />
<entry-point class="com.mycompany.client.MyApp" />
<source path="client" />
<source path="gui" />
</module>
Il se plaint alors:
Unable to find type 'com.technicon.client.MyApp'
Hint: Previous compiler errors may have made this type unavailable
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
quelqu'un peut-il me dire ce que je fais mal et comment résoudre ce problème?