I've worked through the Tutorial on using the UiBinder and tried to utilize the LazyPanel as mentioned in the last section of the tutorial.
To me it seems as if the tutorial implied that simply wrapping up an Element in a LazyPanel would suffice to make that thing work. However, when I try to compile and run this project the GWT compiler complains and tells me that
Rebind result 'com.google.gwt.user.client.ui.LazyPanel' cannot be abstract
How do I have to use the LazyPanel using the UiBinder? Is there something wrong with my configuration or what am I missing on?
I'm using GWT 2.4 (which is AFAIK the latest stable release).
--
EDIT: Here's the XML I'm using:
<?xml version="1.0" encoding="UTF-8"?>
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:s="urn:import:de.dfv.yankee.client.tabs.start"
xmlns:b="urn:import:de.dfv.yankee.client.tabs.bewerber" xmlns:f="urn:import:de.dfv.yankee.client.tabs.firmen"
xmlns:k="urn:import:de.dfv.yankee.client.tabs.kommunikation" xmlns:a="urn:import:de.dfv.yankee.client.tabs.admin"
xmlns:v="urn:import:de.dfv.yankee.client.tabs.abrechnung" xmlns:u="urn:import:de.dfv.yankee.client.tabs.user"
xmlns:svg="urn:import:org.vectomatic.dom.svg.ui">
<ui:with field="svgBundle" type="de.dfv.yankee.client.tabs.Tabs.SVGBundle" />
<g:TabLayoutPanel barUnit="PX" barHeight="30"
ui:field="tabs">
<g:tab>
<g:header>Start</g:header>
<s:StartTab ui:field="startTab" />
</g:tab>
<g:tab>
<g:header>Bewerber</g:header>
<b:BewerberSucheTab ui:field="bewerberSucheTab" />
</g:tab>
<g:tab>
<g:header>Bewerber Ergebnis</g:header>
<g:HTMLPanel>
<svg:SVGImage ui:field="svgImage" resource="{svgBundle.plz}" />
</g:HTMLPanel>
</g:tab>
<g:tab>
<g:header>Firmen</g:header>
<g:LazyPanel>
<f:FirmenSucheTab ui:field="firmenSucheTab" />
</g:LazyPanel>
</g:tab>
<g:tab>
<g:header>Firma Ergebnis</g:header>
<g:HTMLPanel>
</g:HTMLPanel>
</g:tab>
<g:tab>
<g:header>Kommunikation</g:header>
<k:KommunikationsTab ui:field="kommunikationsTab" />
</g:tab>
<g:tab>
<g:header>Abrechnung</g:header>
<v:VermittlungenTab ui:field="vermittlungenTab" />
</g:tab>
<g:tab>
<g:header>Userverwaltung</g:header>
<u:UserTab ui:field="userTab" />
</g:tab>
<g:tab>
<g:header>Admin</g:header>
<a:AdminTab ui:field="adminTab" />
</g:tab>
</g:TabLayoutPanel>
</ui:UiBinder>