public void apply( @NotNull ObjectTablePanel<T> panel ) {
panel.addConfigurer( new DoubleClickConfigurer<T>( new CommandProvider<ObjectTable<T>>() {
@Override
@NotNull
public ActionCommand getCommand( @NotNull final ObjectTable<T> object ) {
return new OpenInEditorCommand() {
@Override
@NotNull
protected Object getCurrentObject() {
return object.getSelectedObject();
}