* @param style
*/
public LabeledStyleComboCellEditor(Composite parent, Object[] values,
String[] labels, String defaultValue, int style) {
super(parent, labels, style);
StyleCombo combo = (StyleCombo) getControl();
if (defaultValue != null)
combo.setDefaultValue(defaultValue);
_values = values;
}