if ( getValue() != null && getValue() instanceof IEntry )
{
IEntry entry = ( IEntry ) getValue();
if ( entry != null )
{
EditEntryWizard wizard = new EditEntryWizard( entry );
WizardDialog dialog = new WizardDialog( parent.getShell(), wizard );
dialog.setBlockOnOpen( true );
dialog.create();
dialog.open();
}