return this.dateTime;
}
@Override
public DateTime createEditorControl(final Composite parent) {
final DateTime dateControl = new DateTime(parent, SWT.DATE
| SWT.DROP_DOWN);
// set style information configured in the associated cell style
dateControl.setBackground(this.cellStyle
.getAttributeValue(CellStyleAttributes.BACKGROUND_COLOR));
dateControl.setForeground(this.cellStyle
.getAttributeValue(CellStyleAttributes.FOREGROUND_COLOR));
dateControl.setFont(this.cellStyle
.getAttributeValue(CellStyleAttributes.FONT));
// add a key listener that will commit or close the editor for special
// key strokes
dateControl.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent event) {
if (event.keyCode == SWT.CR || event.keyCode == SWT.KEYPAD_CR) {