blockingAssetName ) );
popup.show();
return;
}
MultiViewEditor multiview = new MultiViewEditor( rows,
new OpenItemCommand() {
public void open(String key) {
openAsset( key );
}
public void open(MultiViewRow[] rows) {
for ( MultiViewRow row : rows ) {
openAsset( row.uuid );
}
}
} );
multiview.setCloseCommand( new Command() {
public void execute() {
explorerViewCenterPanel.close( Arrays.toString( uuids ) );
}
} );