シンプルなボタンを表示しようとしています。コードは次のとおりです (Project.java):
package com.attempt.project.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.Button;
public class Project implements EntryPoint {
public void onModuleLoad() {
final Button button = new Button("Click me");
RootPanel.get("project").add(button);
}
}
Project.hml は次のとおりです。
<!doctype html>
<html>
<!-- ... -->
<!-- code given by GWT by default -->
<!-- ... -->
<h1>Project</h1>
<table align=center>
<tr>
<td id="project"></td>
</tr>
</table>
<h1> Done </h1>
</body>
</html>
ブラウザで返されるのは次のとおりです。
Project
Done
td の代わりに div タグを使用してみましたが、何も変わりません。私は何を間違っていますか?