}
/** {@inheritDoc} */
public DTOSupportDSLService getDSLService(final ClassLoader activator) {
DTOSupportDSLService dslSrv = dslPool.get(activator);
if (dslSrv == null) {
synchronized (dslPool) {
if (dslSrv == null) {
dslSrv = new DTOSupportDSLServiceImpl(activator);
dslPool.put(activator, dslSrv);