From 2eea14ebd62d8258c9761ba3ddd5e0e1b6744da8 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Tue, 27 Jul 2010 00:56:36 +0000 Subject: [PATCH] fixed javadoc link --- .../integration/context/IntegrationObjectSupport.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java b/spring-integration-core/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java index f9ae8abf45..e573d97a31 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/context/IntegrationObjectSupport.java @@ -69,8 +69,8 @@ public abstract class IntegrationObjectSupport implements BeanNameAware, NamedCo } /** - * Will return the name of this component identified by {@link this#componentName} field. - * If {@link this#componentName} was not set this method will default to the 'beanName' of this component; + * Will return the name of this component identified by {@link #componentName} field. + * If {@link #componentName} was not set this method will default to the 'beanName' of this component; */ public final String getComponentName() { return StringUtils.hasText(this.componentName) ? this.componentName : this.beanName; @@ -83,6 +83,7 @@ public abstract class IntegrationObjectSupport implements BeanNameAware, NamedCo public void setComponentName(String componentName) { this.componentName = componentName; } + /** * Subclasses may implement this method to provide component type information. */