return new NonResizableEditPolicy();
}
public Command getCommand(Request request) {
if (REQ_OPEN.equals(request.getType())) {
OpenRefinementCommand command = new OpenRefinementCommand();
command.setSelection(new StructuredSelection(getHost()));
return command;
} else {
return super.getCommand(request);
}
}