}
private void setColumnClasses(TableElement table,
String... classes)
{
TableColElement colGroupElement = Document.get().createColGroupElement();
for (String clazz : classes)
{
TableColElement colElement = Document.get().createColElement();
colElement.setClassName(clazz);
colGroupElement.appendChild(colElement);
}
table.appendChild(colGroupElement);
}