<h:dataTable id = "elpse" value="#{result.plEllipse}" var="ellipse">
<h:column>
<svg width="300" height="300">
<ellipse cx="#{ellipse.extent.get(0)}" cy="#{ellipse.extent.get(2)}" rx="#{ellipse.extent.get(1)}"
ry="#{ellipse.extent.get(3)}" lineColor="#{ellipse.lineColor}" />
</svg>
</h:column>
</h:dataTable>
<h:dataTable id = "rec" value="#{result.plRectangle}" var="rect">
<h:column>
<svg width="300" height="300">
<rect x="#{rect.extent.get(0)}" y="#{rect.extent.get(1)}" width="#{rect.w}" height="#{rect.h}" fillColor="#{rect.fillColor}" />
</svg>
</h:column>
</h:dataTable> |