341342343344345346347348
private List<?> castToObjectsList(Transferable transferable) throws ConversionException { try { return (List<?>) transferable.getTransferData(TREE_NODE_FLAVOR); } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
444546474849505152
Object result; try { result = ctc.fromXml(null, _xml, _cd); } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } return result; }
8889909192939495
ComplexTypeConverter ctc = _cd.getConverterHT().get(type); try { ctc.toXml(result, _o, _cd); } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
5960616263646566
result.add(o); } return result; } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
113114115116117118119120
Object item = i.next(); ctc.toXml(itemXml, item, _cd); } } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
137138139140141142143144
} return result; } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
310311312313314315316317
p.toXml(_xml, value, _cd); } } } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
65666768697071727374
} try { loadMaps(converterData.getConverterHT(), converterData); } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } return converterData; }
106107108109110111112113114
} catch (ConversionException e) { throw e; } catch (Exception e) { throw new ConversionException(e.getMessage(), e); } }
221222223224225226227228