use of org.drools.workbench.screens.dtablexls.backend.server.conversion.builders.HasColumnHeadings in project drools-wb by kiegroup.
the class GuidedDecisionTableGeneratorListener method doLabelCell.
private void doLabelCell(final int row, final int column, final String value) {
final ActionType actionType = getActionForColumn(row, column);
SourceBuilder sb = actionType.getSourceBuilder();
if (sb instanceof HasColumnHeadings) {
((HasColumnHeadings) sb).setColumnHeader(column, value);
}
}
Aggregations