@Override
protected Transferable createTransferable(JComponent c) {
int row = getSelectedRow();
if ((row > -1) && (row < model.getCurrentChildren().size())) {
String id = getValueAt(row, ID_COLUMN).toString();
CmisObject object = model.getFromCurrentChildren(id);
if (object instanceof Document) {
Document doc = (Document) object;
File tempFile = null;