Skip to content

Commit 4f40a6c

Browse files
committed
fixed javadoc errors
1 parent f8c690c commit 4f40a6c

File tree

16 files changed

+17
-33
lines changed

16 files changed

+17
-33
lines changed

org.springframework.beans/src/main/java/org/springframework/beans/BeanWrapper.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131
*
3232
* <p>This interface supports <b>nested properties</b> enabling the setting
3333
* of properties on subproperties to an unlimited depth.
34-
* A <code>BeanWrapper</code> instance can be used repeatedly, with its
35-
* {@link #setWrappedInstance(Object) target object} (the wrapped JavaBean
36-
* instance) changing as required.
3734
*
3835
* <p>A BeanWrapper's default for the "extractOldValueForEditor" setting
3936
* is "false", to avoid side effects caused by getter method invocations.

org.springframework.beans/src/main/java/org/springframework/beans/factory/config/DestructionAwareBeanPostProcessor.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2005 the original author or authors.
2+
* Copyright 2002-2008 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,14 +19,13 @@
1919
import org.springframework.beans.BeansException;
2020

2121
/**
22-
* Subinterface of BeanPostProcessor that adds a before-destruction callback.
22+
* Subinterface of {@link BeanPostProcessor} that adds a before-destruction callback.
2323
*
2424
* <p>The typical usage will be to invoke custom destruction callbacks on
2525
* specific bean types, matching corresponding initialization callbacks.
2626
*
2727
* @author Juergen Hoeller
2828
* @since 1.0.1
29-
* @see org.springframework.web.struts.ActionServletAwareProcessor
3029
*/
3130
public interface DestructionAwareBeanPostProcessor extends BeanPostProcessor {
3231

org.springframework.context/src/main/java/org/springframework/context/expression/StandardBeanExpressionResolver.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
import org.springframework.util.Assert;
2626

2727
/**
28-
* Standard implementation of the {@link BeanExpressionResolver} interface,
29-
* parsing and evaluating Spring EL using Spring's expression module.
28+
* Standard implementation of the
29+
* {@link org.springframework.beans.factory.config.BeanExpressionResolver}
30+
* interface, parsing and evaluating Spring EL using Spring's expression module.
3031
*
3132
* @author Juergen Hoeller
3233
* @since 3.0

org.springframework.context/src/main/java/org/springframework/context/weaving/LoadTimeWeaverAwareProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public LoadTimeWeaverAwareProcessor(LoadTimeWeaver loadTimeWeaver) {
7575
* <p>The <code>LoadTimeWeaver</code> will be auto-retrieved from
7676
* the given {@link BeanFactory}, expecting a bean named
7777
* {@link ConfigurableApplicationContext#LOAD_TIME_WEAVER_BEAN_NAME "loadTimeWeaver"}.
78-
* @param loadTimeWeaver the specific <code>LoadTimeWeaver</code> that is to be used
78+
* @param beanFactory the BeanFactory to retrieve the LoadTimeWeaver from
7979
*/
8080
public LoadTimeWeaverAwareProcessor(BeanFactory beanFactory) {
8181
this.beanFactory = beanFactory;

org.springframework.core/src/main/java/org/springframework/util/Log4jConfigurer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
* @since 13.03.2003
4343
* @see org.springframework.web.util.Log4jWebConfigurer
4444
* @see org.springframework.web.util.Log4jConfigListener
45-
* @see org.springframework.web.util.Log4jConfigServlet
4645
*/
4746
public abstract class Log4jConfigurer {
4847

org.springframework.expression/src/main/java/org/springframework/expression/PropertyWriterExecutor.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.expression;
1718

1819
/**
1920
* If a property accessor is built upon the CacheablePropertyAccessor class then once the property
2021
* has been resolved the accessor will return an instance of this PropertyWriterExecutor interface
21-
* that can be cached and repeatedly called to set the value of the property.
22-
* <p>
23-
* They can become stale, and in that case should throw an AccessException - this will cause the
22+
* that can be cached and repeatedly called to set the value of the property.
23+
*
24+
* <p>They can become stale, and in that case should throw an AccessException - this will cause the
2425
* infrastructure to go back to the resolvers to ask for a new one.
2526
*
2627
* @author Andy Clement
@@ -29,12 +30,11 @@ public interface PropertyWriterExecutor {
2930

3031
/**
3132
* Set the value of a property to the supplied new value.
32-
*
3333
* @param context the evaluation context in which the command is being executed
3434
* @param targetObject the target object on which property write is being attempted
3535
* @param newValue the new value for the property
3636
* @throws AccessException if there is a problem setting the property or this executor has become stale
3737
*/
38-
void execute(EvaluationContext evaluationContext, Object targetObject, Object newValue) throws AccessException;
38+
void execute(EvaluationContext context, Object targetObject, Object newValue) throws AccessException;
3939

4040
}

org.springframework.expression/src/main/java/org/springframework/expression/TypeLocator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.springframework.expression;
1718

1819
import org.springframework.expression.spel.standard.StandardTypeLocator;
@@ -21,17 +22,16 @@
2122
* Implementors of this interface are expected to be able to locate types. They may use custom classloaders or the
2223
* and deal with common package prefixes (java.lang, etc) however they wish. See
2324
* {@link StandardTypeLocator} for an example implementation.
24-
*
25+
*
2526
* @author Andy Clement
2627
*/
2728
public interface TypeLocator {
2829

2930
/**
3031
* Find a type by name. The name may or may not be fully qualified (eg. String or java.lang.String)
31-
*
32-
* @param type the type to be located
32+
* @param typename the type to be located
3333
* @return the class object representing that type
34-
* @throw ExpressionException if there is a problem finding it
34+
* @throws EvaluationException if there is a problem finding it
3535
*/
3636
Class<?> findType(String typename) throws EvaluationException;
3737

org.springframework.web.servlet/src/main/java/org/springframework/web/multipart/commons/CommonsFileUploadSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ protected static class MultipartParsingResult {
297297
/**
298298
* Create a new MultipartParsingResult.
299299
* @param mpFiles Map of field name to MultipartFile instance
300-
* @param multipartParameters Map of field name to form field String value
300+
* @param mpParams Map of field name to form field String value
301301
*/
302302
public MultipartParsingResult(Map<String, MultipartFile> mpFiles, Map<String, String[]> mpParams) {
303303
this.multipartFiles = mpFiles;

org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/InternalResourceView.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ protected void renderMergedOutputModel(
250250
* @throws Exception if there's a fatal error while we're adding attributes
251251
* @see #renderMergedOutputModel
252252
* @see JstlView#exposeHelpers
253-
* @see org.springframework.web.servlet.view.tiles.TilesJstlView#exposeHelpers
254253
*/
255254
protected void exposeHelpers(HttpServletRequest request) throws Exception {
256255
}
@@ -266,7 +265,6 @@ protected void exposeHelpers(HttpServletRequest request) throws Exception {
266265
* @return the request dispatcher path to use
267266
* @throws Exception if preparations failed
268267
* @see #getUrl()
269-
* @see org.springframework.web.servlet.view.tiles.TilesView#prepareForRendering
270268
*/
271269
protected String prepareForRendering(HttpServletRequest request, HttpServletResponse response)
272270
throws Exception {

org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/InternalResourceViewResolver.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
/**
2222
* Convenient subclass of {@link UrlBasedViewResolver} that supports
2323
* {@link InternalResourceView} (i.e. Servlets and JSPs) and subclasses
24-
* such as {@link JstlView} and
25-
* {@link org.springframework.web.servlet.view.tiles.TilesView}.
24+
* such as {@link JstlView}.
2625
*
2726
* <p>The view class for all views generated by this resolver can be specified
2827
* via {@link #setViewClass}. See {@link UrlBasedViewResolver}'s javadoc for details.
@@ -45,7 +44,6 @@
4544
* @see #setRequestContextAttribute
4645
* @see InternalResourceView
4746
* @see JstlView
48-
* @see org.springframework.web.servlet.view.tiles.TilesView
4947
*/
5048
public class InternalResourceViewResolver extends UrlBasedViewResolver {
5149

0 commit comments

Comments
 (0)