How do you want to display your list members? Separated by a comma, for example?
In that case you could use something like this:
<p:dataTable value="#{bean.fakeList}">
<p:column>
<ui:repeat var="item" value="#{bean.myList}">
<h:outputText value="#{item.property}" />
</ui:repeat>
</p:column>
</p:dataTable>
Notice that the #{bean.fakeList} must return a list of 1 element, so that the dataTable will have an item to iterate, otherwise it'll show you the 'No records' message.
The output of this code will come in a single row and will be something like: value1, value2, value3, ...
I'm not sure if that was what you were looking for.