use of com.google.gwt.dom.client.Style.TextAlign in project ovirt-engine by oVirt.
the class NetworkOutOfSyncPanel method outOfSyncTableAsWidget.
public Widget outOfSyncTableAsWidget() {
addTableFirstRow();
for (ReportedConfiguration reportedConfiguration : reportedConfigurationList) {
List<Label> values = reportedConfigurationAsList(reportedConfiguration);
TextAlign textAlign = resolveAlignment(reportedConfiguration.getType());
addOutOfSyncRow(values, textAlign);
}
return flowPanel.asWidget();
}
Aggregations