|
|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2012 the original author or authors. |
|
|
|
* Copyright 2002-2013 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -17,7 +17,6 @@ |
|
|
|
package org.springframework.beans.factory.support; |
|
|
|
package org.springframework.beans.factory.support; |
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.beans.MutablePropertyValues; |
|
|
|
import org.springframework.beans.MutablePropertyValues; |
|
|
|
import org.springframework.beans.factory.config.BeanDefinition; |
|
|
|
|
|
|
|
import org.springframework.beans.factory.config.ConstructorArgumentValues; |
|
|
|
import org.springframework.beans.factory.config.ConstructorArgumentValues; |
|
|
|
import org.springframework.util.ObjectUtils; |
|
|
|
import org.springframework.util.ObjectUtils; |
|
|
|
|
|
|
|
|
|
|
|
@ -98,7 +97,7 @@ public class ChildBeanDefinition extends AbstractBeanDefinition { |
|
|
|
* @param pvs the property values to apply |
|
|
|
* @param pvs the property values to apply |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public ChildBeanDefinition( |
|
|
|
public ChildBeanDefinition( |
|
|
|
String parentName, Class beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs) { |
|
|
|
String parentName, Class<?> beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs) { |
|
|
|
|
|
|
|
|
|
|
|
super(cargs, pvs); |
|
|
|
super(cargs, pvs); |
|
|
|
this.parentName = parentName; |
|
|
|
this.parentName = parentName; |
|
|
|
@ -128,7 +127,7 @@ public class ChildBeanDefinition extends AbstractBeanDefinition { |
|
|
|
* @param original the original bean definition to copy from |
|
|
|
* @param original the original bean definition to copy from |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public ChildBeanDefinition(ChildBeanDefinition original) { |
|
|
|
public ChildBeanDefinition(ChildBeanDefinition original) { |
|
|
|
super((BeanDefinition) original); |
|
|
|
super(original); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|