Browse Source

Polish contribution

See gh-27034
pull/27042/head
Sam Brannen 5 years ago
parent
commit
29fa9c1728
  1. 9
      spring-beans/src/main/java/org/springframework/beans/factory/BeanFactory.java

9
spring-beans/src/main/java/org/springframework/beans/factory/BeanFactory.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2021 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.
@ -84,7 +84,7 @@ import org.springframework.lang.Nullable;
* (only applicable when running in a web application context) * (only applicable when running in a web application context)
* <li>{@code postProcessBeforeInitialization} methods of BeanPostProcessors * <li>{@code postProcessBeforeInitialization} methods of BeanPostProcessors
* <li>InitializingBean's {@code afterPropertiesSet} * <li>InitializingBean's {@code afterPropertiesSet}
* <li>a custom init-method definition * <li>a custom {@code init-method} definition
* <li>{@code postProcessAfterInitialization} methods of BeanPostProcessors * <li>{@code postProcessAfterInitialization} methods of BeanPostProcessors
* </ol> * </ol>
* *
@ -92,7 +92,7 @@ import org.springframework.lang.Nullable;
* <ol> * <ol>
* <li>{@code postProcessBeforeDestruction} methods of DestructionAwareBeanPostProcessors * <li>{@code postProcessBeforeDestruction} methods of DestructionAwareBeanPostProcessors
* <li>DisposableBean's {@code destroy} * <li>DisposableBean's {@code destroy}
* <li>a custom destroy-method definition * <li>a custom {@code destroy-method} definition
* </ol> * </ol>
* *
* @author Rod Johnson * @author Rod Johnson
@ -102,9 +102,9 @@ import org.springframework.lang.Nullable;
* @see BeanNameAware#setBeanName * @see BeanNameAware#setBeanName
* @see BeanClassLoaderAware#setBeanClassLoader * @see BeanClassLoaderAware#setBeanClassLoader
* @see BeanFactoryAware#setBeanFactory * @see BeanFactoryAware#setBeanFactory
* @see org.springframework.context.ResourceLoaderAware#setResourceLoader
* @see org.springframework.context.EnvironmentAware#setEnvironment * @see org.springframework.context.EnvironmentAware#setEnvironment
* @see org.springframework.context.EmbeddedValueResolverAware#setEmbeddedValueResolver * @see org.springframework.context.EmbeddedValueResolverAware#setEmbeddedValueResolver
* @see org.springframework.context.ResourceLoaderAware#setResourceLoader
* @see org.springframework.context.ApplicationEventPublisherAware#setApplicationEventPublisher * @see org.springframework.context.ApplicationEventPublisherAware#setApplicationEventPublisher
* @see org.springframework.context.MessageSourceAware#setMessageSource * @see org.springframework.context.MessageSourceAware#setMessageSource
* @see org.springframework.context.ApplicationContextAware#setApplicationContext * @see org.springframework.context.ApplicationContextAware#setApplicationContext
@ -113,6 +113,7 @@ import org.springframework.lang.Nullable;
* @see InitializingBean#afterPropertiesSet * @see InitializingBean#afterPropertiesSet
* @see org.springframework.beans.factory.support.RootBeanDefinition#getInitMethodName * @see org.springframework.beans.factory.support.RootBeanDefinition#getInitMethodName
* @see org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization * @see org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization
* @see org.springframework.beans.factory.config.DestructionAwareBeanPostProcessor#postProcessBeforeDestruction
* @see DisposableBean#destroy * @see DisposableBean#destroy
* @see org.springframework.beans.factory.support.RootBeanDefinition#getDestroyMethodName * @see org.springframework.beans.factory.support.RootBeanDefinition#getDestroyMethodName
*/ */

Loading…
Cancel
Save