xenomachina / gxp

Google XML Pages 0.2 (Beta)
https://code.google.com/p/gxp/
Apache License 2.0
0 stars 0 forks source link

gxp:interface doesn't work well with gxp:typeparam #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Given this:

<gxp:interface name="RowFormatter">
  <gxp:typeparam name='E'/>
  <gxp:param name='row' type="E"/>
</gxp:interface>

This doesn't work:

<gxp:template name='FooRowFormatter' >
  <gxp:typeparam name='E'/>
  <gxp:implements interface='RowFormatter{E}'/>
</template> 

Neither does this:

<gxp:template name='FooRowFormatter' >
  <gxp:implements interface='RowFormatter{Row}'/>
</template> 

Original issue reported on code.google.com by har...@gmail.com on 23 Oct 2008 at 8:10