|
1 | 1 | /* |
2 | | - * Copyright 2002-2013 the original author or authors. |
| 2 | + * Copyright 2002-2014 the original author or authors. |
3 | 3 | * |
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | * you may not use this file except in compliance with the License. |
|
27 | 27 | import javax.sql.DataSource; |
28 | 28 |
|
29 | 29 | import org.springframework.beans.BeansException; |
30 | | -import org.springframework.tests.sample.beans.ITestBean; |
31 | | -import org.springframework.tests.sample.beans.IndexedTestBean; |
32 | | -import org.springframework.tests.sample.beans.TestBean; |
33 | 30 | import org.springframework.beans.factory.BeanFactory; |
34 | 31 | import org.springframework.beans.factory.BeanFactoryAware; |
35 | 32 | import org.springframework.beans.factory.BeanNameAware; |
36 | 33 | import org.springframework.beans.factory.DisposableBean; |
37 | | -import org.springframework.tests.sample.beans.factory.DummyFactory; |
38 | 34 | import org.springframework.beans.factory.InitializingBean; |
39 | 35 | import org.springframework.beans.factory.config.BeanPostProcessor; |
40 | 36 | import org.springframework.beans.factory.support.MethodReplacer; |
| 37 | +import org.springframework.tests.sample.beans.ITestBean; |
| 38 | +import org.springframework.tests.sample.beans.IndexedTestBean; |
| 39 | +import org.springframework.tests.sample.beans.TestBean; |
| 40 | +import org.springframework.tests.sample.beans.factory.DummyFactory; |
41 | 41 |
|
42 | 42 | /** |
43 | 43 | * Types used by {@link XmlBeanFactoryTests} and its attendant XML config files. |
44 | 44 | * |
45 | 45 | * @author Chris Beams |
46 | 46 | */ |
47 | | -final class XmlBeanFactoryTestTypes { } |
| 47 | +final class XmlBeanFactoryTestTypes { |
| 48 | +} |
| 49 | + |
48 | 50 |
|
49 | 51 | /** |
50 | 52 | * Simple bean used to check constructor dependency checking. |
@@ -176,15 +178,10 @@ public ITestBean getTestBean() { |
176 | 178 |
|
177 | 179 | protected abstract FactoryMethods createFactoryMethods(); |
178 | 180 |
|
179 | | - /** |
180 | | - * @return Returns the setterString. |
181 | | - */ |
182 | 181 | public String getSetterString() { |
183 | 182 | return setterString; |
184 | 183 | } |
185 | | - /** |
186 | | - * @param setterString The setterString to set. |
187 | | - */ |
| 184 | + |
188 | 185 | public void setSetterString(String setterString) { |
189 | 186 | this.setterString = setterString; |
190 | 187 | } |
@@ -502,7 +499,7 @@ public TestBean getPrototypeDependency(Object someParam) { |
502 | 499 | return new TestBean(); |
503 | 500 | } |
504 | 501 |
|
505 | | - public TestBean invokesOverridenMethodOnSelf() { |
| 502 | + public TestBean invokesOverriddenMethodOnSelf() { |
506 | 503 | return getPrototypeDependency(); |
507 | 504 | } |
508 | 505 |
|
|
0 commit comments