Clover Coverage Report - Kuali Spring Utilities 1.1.1-SNAPSHOT
Coverage timestamp: Thu Apr 21 2011 14:08:56 EST
../../../../img/srcFileCovDistChart0.png 73% of files have more coverage
5   27   3   1.67
0   20   0.6   3
3     1  
1    
 
  DelegatingPropertyPlaceholderConfigurer       Line # 8 5 0% 3 8 0% 0.0
 
No Tests
 
1    package org.kuali.spring.util;
2   
3    import org.springframework.beans.BeanUtils;
4    import org.springframework.beans.BeansException;
5    import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
6    import org.springframework.util.Assert;
7   
 
8    public class DelegatingPropertyPlaceholderConfigurer extends ConfigurablePropertyPlaceholderConfigurer {
9   
10    ConfigurablePropertyPlaceholderConfigurer delegate;
11   
 
12  0 toggle @Override
13    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
14  0 Assert.notNull(delegate);
15  0 BeanUtils.copyProperties(this, delegate);
16  0 delegate.postProcessBeanFactory(beanFactory);
17    }
18   
 
19  0 toggle public ConfigurablePropertyPlaceholderConfigurer getDelegate() {
20  0 return delegate;
21    }
22   
 
23  0 toggle public void setDelegate(ConfigurablePropertyPlaceholderConfigurer delegate) {
24  0 this.delegate = delegate;
25    }
26   
27    }