私は Eclipse Juno Service Release 1 を使用しており、最新の GWT Designer プラグインをインストールして更新を実行しています。GWT Design でウィジェットのプロパティの StyleName 行にある CSS ボタンを選択すると、「モジュールまたは HTML から参照される CSS ファイルがありません」というメッセージが表示されます。
私の gwt.xml は次のとおりです。
<module>
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.google.gwt.user.theme.standard.Standard"/>
<entry-point class="org.AwardTracker.client.AwardTracker"/>
<stylesheet src="org.AwardTracker.AwardTracker.css"/>
<!-- servelet context - path is arbitrary, but must match up with the rpc init inside java class -->
<!-- Tomcat will listen for this from the server and waits for rpc request in this context -->
<servlet class="org.AwardTracker.server.MySQLConnection" path="/MySQLConnection" />
<inherits name="com.google.gwt.user.theme.standard.Standard"/>
<inherits name="com.google.gwt.user.theme.chrome.Chrome"/>
<inherits name="com.google.gwt.user.theme.dark.Dark"/>
</module>
私の CSS は org.AwardTracker (gwt.xml ファイルのすぐ上) にあります。
私がググったすべてのヒントは、GWT Designer を更新することでした。これらのヒントはすべて数年前のもので、私は最新バージョンを持っています。
私が間違っていることは何ですか?