Polish contribution

Closes gh-1112
master
Stephane Nicoll 8 years ago
parent 3ccf653174
commit bfa48d551d
  1. 4
      spring-beans/src/main/java/org/springframework/beans/factory/BeanClassLoaderAware.java
  2. 2
      spring-beans/src/main/java/org/springframework/beans/factory/BeanNameAware.java
  3. 5
      spring-beans/src/main/java/org/springframework/beans/factory/DisposableBean.java
  4. 5
      spring-beans/src/main/java/org/springframework/beans/factory/InitializingBean.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2012 the original author or authors. * Copyright 2002-2016 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.
@ -18,7 +18,7 @@ package org.springframework.beans.factory;
/** /**
* Callback that allows a bean to be aware of the bean * Callback that allows a bean to be aware of the bean
* {@link ClassLoader class loader}; that is, the class loader is used by the * {@link ClassLoader class loader}; that is, the class loader used by the
* present bean factory to load bean classes. * present bean factory to load bean classes.
* *
* <p>This is mainly intended to be implemented by framework classes which * <p>This is mainly intended to be implemented by framework classes which

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2011 the original author or authors. * Copyright 2002-2016 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.

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2012 the original author or authors. * Copyright 2002-2016 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.
@ -24,7 +24,8 @@ package org.springframework.beans.factory;
* *
* <p>An alternative to implementing DisposableBean is specifying a custom * <p>An alternative to implementing DisposableBean is specifying a custom
* destroy-method, for example in an XML bean definition. * destroy-method, for example in an XML bean definition.
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}. * For a list of all bean lifecycle methods, see the
* {@link BeanFactory BeanFactory javadocs}.
* *
* @author Juergen Hoeller * @author Juergen Hoeller
* @since 12.08.2003 * @since 12.08.2003

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2012 the original author or authors. * Copyright 2002-2016 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.
@ -23,7 +23,8 @@ package org.springframework.beans.factory;
* *
* <p>An alternative to implementing InitializingBean is specifying a custom * <p>An alternative to implementing InitializingBean is specifying a custom
* init-method, for example in an XML bean definition. * init-method, for example in an XML bean definition.
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}. * For a list of all bean lifecycle methods, see the
* {@link BeanFactory BeanFactory javadocs}.
* *
* @author Rod Johnson * @author Rod Johnson
* @see BeanNameAware * @see BeanNameAware

Loading…
Cancel
Save