Browse Source

fixed javadoc errors

conversation
Juergen Hoeller 16 years ago
parent
commit
4f40a6c313
  1. 3
      org.springframework.beans/src/main/java/org/springframework/beans/BeanWrapper.java
  2. 5
      org.springframework.beans/src/main/java/org/springframework/beans/factory/config/DestructionAwareBeanPostProcessor.java
  3. 5
      org.springframework.context/src/main/java/org/springframework/context/expression/StandardBeanExpressionResolver.java
  4. 2
      org.springframework.context/src/main/java/org/springframework/context/weaving/LoadTimeWeaverAwareProcessor.java
  5. 1
      org.springframework.core/src/main/java/org/springframework/util/Log4jConfigurer.java
  6. 10
      org.springframework.expression/src/main/java/org/springframework/expression/PropertyWriterExecutor.java
  7. 8
      org.springframework.expression/src/main/java/org/springframework/expression/TypeLocator.java
  8. 2
      org.springframework.web.servlet/src/main/java/org/springframework/web/multipart/commons/CommonsFileUploadSupport.java
  9. 2
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/InternalResourceView.java
  10. 4
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/InternalResourceViewResolver.java
  11. 2
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityToolboxView.java
  12. 1
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityView.java
  13. 1
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityViewResolver.java
  14. 1
      org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/xslt/AbstractXsltView.java
  15. 1
      org.springframework.web/src/main/java/org/springframework/web/context/support/RequestHandledEvent.java
  16. 2
      org.springframework.web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java

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

@ -31,9 +31,6 @@ import java.beans.PropertyDescriptor; @@ -31,9 +31,6 @@ import java.beans.PropertyDescriptor;
*
* <p>This interface supports <b>nested properties</b> enabling the setting
* of properties on subproperties to an unlimited depth.
* A <code>BeanWrapper</code> instance can be used repeatedly, with its
* {@link #setWrappedInstance(Object) target object} (the wrapped JavaBean
* instance) changing as required.
*
* <p>A BeanWrapper's default for the "extractOldValueForEditor" setting
* is "false", to avoid side effects caused by getter method invocations.

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

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2005 the original author or authors.
* Copyright 2002-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -19,14 +19,13 @@ package org.springframework.beans.factory.config; @@ -19,14 +19,13 @@ package org.springframework.beans.factory.config;
import org.springframework.beans.BeansException;
/**
* Subinterface of BeanPostProcessor that adds a before-destruction callback.
* Subinterface of {@link BeanPostProcessor} that adds a before-destruction callback.
*
* <p>The typical usage will be to invoke custom destruction callbacks on
* specific bean types, matching corresponding initialization callbacks.
*
* @author Juergen Hoeller
* @since 1.0.1
* @see org.springframework.web.struts.ActionServletAwareProcessor
*/
public interface DestructionAwareBeanPostProcessor extends BeanPostProcessor {

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

@ -25,8 +25,9 @@ import org.springframework.expression.spel.standard.StandardEvaluationContext; @@ -25,8 +25,9 @@ import org.springframework.expression.spel.standard.StandardEvaluationContext;
import org.springframework.util.Assert;
/**
* Standard implementation of the {@link BeanExpressionResolver} interface,
* parsing and evaluating Spring EL using Spring's expression module.
* Standard implementation of the
* {@link org.springframework.beans.factory.config.BeanExpressionResolver}
* interface, parsing and evaluating Spring EL using Spring's expression module.
*
* @author Juergen Hoeller
* @since 3.0

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

@ -75,7 +75,7 @@ public class LoadTimeWeaverAwareProcessor implements BeanPostProcessor, BeanFact @@ -75,7 +75,7 @@ public class LoadTimeWeaverAwareProcessor implements BeanPostProcessor, BeanFact
* <p>The <code>LoadTimeWeaver</code> will be auto-retrieved from
* the given {@link BeanFactory}, expecting a bean named
* {@link ConfigurableApplicationContext#LOAD_TIME_WEAVER_BEAN_NAME "loadTimeWeaver"}.
* @param loadTimeWeaver the specific <code>LoadTimeWeaver</code> that is to be used
* @param beanFactory the BeanFactory to retrieve the LoadTimeWeaver from
*/
public LoadTimeWeaverAwareProcessor(BeanFactory beanFactory) {
this.beanFactory = beanFactory;

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

@ -42,7 +42,6 @@ import org.apache.log4j.xml.DOMConfigurator; @@ -42,7 +42,6 @@ import org.apache.log4j.xml.DOMConfigurator;
* @since 13.03.2003
* @see org.springframework.web.util.Log4jWebConfigurer
* @see org.springframework.web.util.Log4jConfigListener
* @see org.springframework.web.util.Log4jConfigServlet
*/
public abstract class Log4jConfigurer {

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

@ -13,14 +13,15 @@ @@ -13,14 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.expression;
/**
* If a property accessor is built upon the CacheablePropertyAccessor class then once the property
* has been resolved the accessor will return an instance of this PropertyWriterExecutor interface
* that can be cached and repeatedly called to set the value of the property.
* <p>
* They can become stale, and in that case should throw an AccessException - this will cause the
* that can be cached and repeatedly called to set the value of the property.
*
* <p>They can become stale, and in that case should throw an AccessException - this will cause the
* infrastructure to go back to the resolvers to ask for a new one.
*
* @author Andy Clement
@ -29,12 +30,11 @@ public interface PropertyWriterExecutor { @@ -29,12 +30,11 @@ public interface PropertyWriterExecutor {
/**
* Set the value of a property to the supplied new value.
*
* @param context the evaluation context in which the command is being executed
* @param targetObject the target object on which property write is being attempted
* @param newValue the new value for the property
* @throws AccessException if there is a problem setting the property or this executor has become stale
*/
void execute(EvaluationContext evaluationContext, Object targetObject, Object newValue) throws AccessException;
void execute(EvaluationContext context, Object targetObject, Object newValue) throws AccessException;
}

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

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.expression;
import org.springframework.expression.spel.standard.StandardTypeLocator;
@ -21,17 +22,16 @@ import org.springframework.expression.spel.standard.StandardTypeLocator; @@ -21,17 +22,16 @@ import org.springframework.expression.spel.standard.StandardTypeLocator;
* Implementors of this interface are expected to be able to locate types. They may use custom classloaders or the
* and deal with common package prefixes (java.lang, etc) however they wish. See
* {@link StandardTypeLocator} for an example implementation.
*
*
* @author Andy Clement
*/
public interface TypeLocator {
/**
* Find a type by name. The name may or may not be fully qualified (eg. String or java.lang.String)
*
* @param type the type to be located
* @param typename the type to be located
* @return the class object representing that type
* @throw ExpressionException if there is a problem finding it
* @throws EvaluationException if there is a problem finding it
*/
Class<?> findType(String typename) throws EvaluationException;

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

@ -297,7 +297,7 @@ public abstract class CommonsFileUploadSupport { @@ -297,7 +297,7 @@ public abstract class CommonsFileUploadSupport {
/**
* Create a new MultipartParsingResult.
* @param mpFiles Map of field name to MultipartFile instance
* @param multipartParameters Map of field name to form field String value
* @param mpParams Map of field name to form field String value
*/
public MultipartParsingResult(Map<String, MultipartFile> mpFiles, Map<String, String[]> mpParams) {
this.multipartFiles = mpFiles;

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

@ -250,7 +250,6 @@ public class InternalResourceView extends AbstractUrlBasedView { @@ -250,7 +250,6 @@ public class InternalResourceView extends AbstractUrlBasedView {
* @throws Exception if there's a fatal error while we're adding attributes
* @see #renderMergedOutputModel
* @see JstlView#exposeHelpers
* @see org.springframework.web.servlet.view.tiles.TilesJstlView#exposeHelpers
*/
protected void exposeHelpers(HttpServletRequest request) throws Exception {
}
@ -266,7 +265,6 @@ public class InternalResourceView extends AbstractUrlBasedView { @@ -266,7 +265,6 @@ public class InternalResourceView extends AbstractUrlBasedView {
* @return the request dispatcher path to use
* @throws Exception if preparations failed
* @see #getUrl()
* @see org.springframework.web.servlet.view.tiles.TilesView#prepareForRendering
*/
protected String prepareForRendering(HttpServletRequest request, HttpServletResponse response)
throws Exception {

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

@ -21,8 +21,7 @@ import org.springframework.util.ClassUtils; @@ -21,8 +21,7 @@ import org.springframework.util.ClassUtils;
/**
* Convenient subclass of {@link UrlBasedViewResolver} that supports
* {@link InternalResourceView} (i.e. Servlets and JSPs) and subclasses
* such as {@link JstlView} and
* {@link org.springframework.web.servlet.view.tiles.TilesView}.
* such as {@link JstlView}.
*
* <p>The view class for all views generated by this resolver can be specified
* via {@link #setViewClass}. See {@link UrlBasedViewResolver}'s javadoc for details.
@ -45,7 +44,6 @@ import org.springframework.util.ClassUtils; @@ -45,7 +44,6 @@ import org.springframework.util.ClassUtils;
* @see #setRequestContextAttribute
* @see InternalResourceView
* @see JstlView
* @see org.springframework.web.servlet.view.tiles.TilesView
*/
public class InternalResourceViewResolver extends UrlBasedViewResolver {

2
org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityToolboxView.java

@ -63,7 +63,6 @@ import org.springframework.util.ReflectionUtils; @@ -63,7 +63,6 @@ import org.springframework.util.ReflectionUtils;
* @see #initTool
* @see org.apache.velocity.tools.view.context.ViewContext
* @see org.apache.velocity.tools.view.context.ChainedContext
* @see org.apache.velocity.tools.view.tools.LinkTool
*/
public class VelocityToolboxView extends VelocityView {
@ -121,7 +120,6 @@ public class VelocityToolboxView extends VelocityView { @@ -121,7 +120,6 @@ public class VelocityToolboxView extends VelocityView {
* Overridden to check for the ViewContext interface which is part of the
* view package of Velocity Tools. This requires a special Velocity context,
* like ChainedContext as set up by {@link #createVelocityContext} in this class.
* @see org.apache.velocity.tools.view.tools.LinkTool#init(Object)
*/
@Override
protected void initTool(Object tool, Context velocityContext) throws Exception {

1
org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityView.java

@ -122,7 +122,6 @@ public class VelocityView extends AbstractTemplateView { @@ -122,7 +122,6 @@ public class VelocityView extends AbstractTemplateView {
* @see VelocityToolboxView
* @see #createVelocityContext
* @see #initTool
* @see #setVelocityFormatterAttribute
* @see #setDateToolAttribute
* @see #setNumberToolAttribute
*/

1
org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/velocity/VelocityViewResolver.java

@ -37,7 +37,6 @@ import org.springframework.web.servlet.view.AbstractUrlBasedView; @@ -37,7 +37,6 @@ import org.springframework.web.servlet.view.AbstractUrlBasedView;
* @see #setSuffix
* @see #setRequestContextAttribute
* @see #setExposeSpringMacroHelpers
* @see #setVelocityFormatterAttribute
* @see #setDateToolAttribute
* @see #setNumberToolAttribute
* @see VelocityView

1
org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/xslt/AbstractXsltView.java

@ -411,7 +411,6 @@ public abstract class AbstractXsltView extends AbstractView { @@ -411,7 +411,6 @@ public abstract class AbstractXsltView extends AbstractView {
* @param model the model Map
* @param request current HTTP request
* @return a Map of parameters to apply to the transformation process
* @see #getParameters()
* @see javax.xml.transform.Transformer#setParameter
*/
protected Map getParameters(Map<String, Object> model, HttpServletRequest request) {

1
org.springframework.web/src/main/java/org/springframework/web/context/support/RequestHandledEvent.java

@ -30,7 +30,6 @@ import org.springframework.context.ApplicationEvent; @@ -30,7 +30,6 @@ import org.springframework.context.ApplicationEvent;
* @author Juergen Hoeller
* @since January 17, 2001
* @see ServletRequestHandledEvent
* @see PerformanceMonitorListener
* @see org.springframework.web.servlet.FrameworkServlet
* @see org.springframework.context.ApplicationContext#publishEvent
*/

2
org.springframework.web/src/main/java/org/springframework/web/context/support/WebApplicationContextUtils.java

@ -48,8 +48,6 @@ import org.springframework.web.context.request.SessionScope; @@ -48,8 +48,6 @@ import org.springframework.web.context.request.SessionScope;
* @see org.springframework.web.context.ContextLoader
* @see org.springframework.web.servlet.FrameworkServlet
* @see org.springframework.web.servlet.DispatcherServlet
* @see org.springframework.web.struts.ActionSupport
* @see org.springframework.web.struts.DelegatingActionProxy
* @see org.springframework.web.jsf.FacesContextUtils
* @see org.springframework.web.jsf.DelegatingVariableResolver
*/

Loading…
Cancel
Save