453454455456457458459460
private static List<?> castToList(Transferable transferable) throws ConversionException { try { return (List<?>) transferable.getTransferData(TREE_NODE_FLAVOR); } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }