Como integrar o GIB UIBinder com o Canvas?

Eu estou tentando encontrar meu caminho com o Google Web Toolkit. Agora estou tentando conseguir umCanvas Widget instalado e funcionando.

Mas estou recebendo esse erro e não entendo o porquê:

Compiling module de.kuntze.HelloCanvas
Computing all possible rebind results for 'de.kuntze.client.HelloCanvas.HelloCanvasUiBinder'
  Rebinding de.kuntze.client.HelloCanvas.HelloCanvasUiBinder
     Invoking generator com.google.gwt.uibinder.rebind.UiBinderGenerator
        [ERROR] com.google.gwt.canvas.client.Canvas has no default (zero args) constructor. To fix this, you can define a @UiFactory method on the UiBinder's owner, or annotate a constructor of Canvas with @UiConstructor.
[ERROR] Errors in 'de/kuntze/client/HelloCanvas.java'
  [ERROR] Line 14: Failed to resolve 'de.kuntze.client.HelloCanvas.HelloCanvasUiBinder' via deferred binding
[WARN] For the following type(s), generated source was never committed (did you forget to call commit()?)
  [WARN] de.kuntze.client.HelloCanvas_HelloCanvasUiBinderImpl

Meu código é assim:

O móduloHelloCanvas.gwt.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN" "http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/src/gwt-module.dtd">
<module>
    <inherits name="com.google.gwt.user.User" />
    <source path="client"/>
    <entry-point class="de.kuntze.client.HelloCanvas"/>
</module>

O arquivo UIBinderHelloCanvas.ui.xml

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:c='urn:import:com.google.gwt.canvas.client'>
<ui:style>

</ui:style>
<g:HTMLPanel>
    <c:Canvas ui:field="canvas"></c:Canvas>
</g:HTMLPanel>

O arquivo JavaHelloCanvas.java

package de.kuntze.client;

import com.google.gwt.canvas.client.Canvas;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.Widget;

public class HelloCanvas extends Composite implements EntryPoint{

    private static HelloCanvasUiBinder uiBinder = GWT
            .create(HelloCanvasUiBinder.class);

    @UiField Canvas canvas;

    interface HelloCanvasUiBinder extends UiBinder<Widget, HelloCanvas> {
    }

    public HelloCanvas() {
        initWidget(uiBinder.createAndBindUi(this));
    }

    @Override
    public void onModuleLoad() {
        canvas = Canvas.createIfSupported();
        canvas.setWidth("400px");
        canvas.setHeight("400px"); 
        canvas.setCoordinateSpaceWidth(400);
        canvas.setCoordinateSpaceHeight(400);
        RootPanel.get().add(this);
    }
}

Aposto que a resposta será bem fácil, mas não sei porque recebo essa mensagem de erro e porque o código não compila.

Editar: Então, depois de tentar o conselho abaixo, funciona. Aí vem o código editado que desenha um triângulo preto.

O arquivo UIBinderHelloCanvas.ui.xml incluindo um SimplePanel

<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<g:HTMLPanel>
    <g:SimplePanel width="200px" height="200px" ui:field="panel">
    </g:SimplePanel>
</g:HTMLPanel>

O arquivo Java editadoHelloCanvas.java

package de.kuntze.client;

import com.google.gwt.canvas.client.Canvas;
import com.google.gwt.canvas.dom.client.Context2d;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;

public class HelloCanvas extends Composite implements EntryPoint {

private static HelloCanvasUiBinder uiBinder = GWT
        .create(HelloCanvasUiBinder.class);

@UiField
SimplePanel panel;

interface HelloCanvasUiBinder extends UiBinder<Widget, HelloCanvas> {
}

public HelloCanvas() {
    initWidget(uiBinder.createAndBindUi(this));
}

@Override
public void onModuleLoad() {
    Canvas tCanvas = Canvas.createIfSupported();
    tCanvas.setWidth("400px");
    tCanvas.setHeight("400px");
    tCanvas.setCoordinateSpaceWidth(400);
    tCanvas.setCoordinateSpaceHeight(400);

    Context2d tContext2d = tCanvas.getContext2d();
    tContext2d.beginPath();
    tContext2d.moveTo(25, 25);
    tContext2d.lineTo(105, 25);
    tContext2d.lineTo(25, 105);
    tContext2d.fill();
    panel.add(tCanvas);

    RootPanel.get().add(this);
    }
}

questionAnswers(1)

yourAnswerToTheQuestion