//
////////////////////////////////////////////////////////////////////////////
@Override
protected void openDialog(Property property) throws Exception {
GwtState state = getGWTState(property);
ImageSelectionDialog dialog =
new ImageSelectionDialog(getParentShell(),
state.getResourcesProvider(),
state.getModuleDescription(),
property.getTitle());
if (dialog.open() == Window.OK) {
String resourcePath = dialog.getSelectedResourcePath();
property.setValue(resourcePath);
}
}