table.addCell(optionNameHeader,row++,column);
table.endHeaders();
//table.addCell(new Cell(o.getTitle()),row++,column);
while ((iActors.hasNext())) {
ColumnData cd = iActors.next();
WedgeData wd = cd.getWedge(o);
Cell c;
if(wd == null) {
//c = new Cell("-");
c = new Cell();
} else {
double coeff = wd.getCoefficient();
c = new Cell(new Phrase(Double.toString(coeff),fntRomanTableAllFields));
}
c.setHorizontalAlignment(Element.ALIGN_CENTER);
c.setVerticalAlignment(Element.ALIGN_CENTER);
/*