Senhores o que eu poderia usar para criar as celulas de uma table em um xhtml?
<table border="0">
<tr>
<td width="120" rowspan="7" align="center" class="rede">
Rede 1
</td>
<td align="center"></td>
//Dá p fazer isso no xhtml/JSF ???
<%GController gv = new GController();
for(Bar b:gv.getBars()){
String coluna = "<td align=center class=porte>"+b.getTitulo()+"</td>";
%>
<%=coluna%>
<%}%>
</tr>