121122123124125126127128129
{ ((StoreCallback) pc).jdoPreStore(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPreStore"), e); } } }
167168169170171172173174175
{ ((ClearCallback) pc).jdoPreClear(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPreClear"), e); } } }
213214215216217218219220221
{ ((DeleteCallback) pc).jdoPreDelete(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPreDelete"), e); } } }
283284285286287288289290291292293
{ ((LoadCallback) pc).jdoPostLoad(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPostLoad"), e); } } Iterator iter = getListenersWorkingCopy().iterator(); while (iter.hasNext())
331332333334335336337338339
{ ((DetachCallback) pc).jdoPreDetach(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPreDetach"), e); } } }
351352353354355356357358359360361
{ ((DetachCallback) detachedPC).jdoPostDetach(pc); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPostDetach"), e); } } Iterator iter = getListenersWorkingCopy().iterator(); while (iter.hasNext())
390391392393394395396397398
{ ((AttachCallback) pc).jdoPreAttach(); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPreAttach"), e); } } }
410411412413414415416417418419420
{ ((AttachCallback) pc).jdoPostAttach(detachedPC); } catch (Exception e) { throw new JDOUserCallbackException(LOCALISER.msg("025001", "jdoPostAttach"), e); } } Iterator iter = getListenersWorkingCopy().iterator(); while (iter.hasNext())
164165166167168169170171172
206207208209210211212213214