AbstractProperties properties = CPAProperties.getInstance();
Object[] objects = properties.getObjectArray(
CPAProperties.TX_SYNCHRONIZABLE, properties.getApplicationClassLoader());
if (objects != null) {
for (int i = 0; i < objects.length; i++) {
TxSynchronizable sync = (TxSynchronizable) objects[i];
_synchronizables.add(sync);
}
}
if (_synchronizables.size() == 0) { _synchronizables = null; }