fixed javadoc errors
This commit is contained in:
parent
f8c690c542
commit
4f40a6c313
|
@ -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.
|
||||
|
|
|
@ -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;
|
|||
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 {
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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 {
|
|||
|
||||
/**
|
||||
* 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;
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
|||
* 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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 {
|
|||
* @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 {
|
||||
|
|
|
@ -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;
|
|||
* @see #setRequestContextAttribute
|
||||
* @see InternalResourceView
|
||||
* @see JstlView
|
||||
* @see org.springframework.web.servlet.view.tiles.TilesView
|
||||
*/
|
||||
public class InternalResourceViewResolver extends UrlBasedViewResolver {
|
||||
|
||||
|
|
|
@ -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 {
|
|||
* 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 {
|
||||
|
|
|
@ -122,7 +122,6 @@ public class VelocityView extends AbstractTemplateView {
|
|||
* @see VelocityToolboxView
|
||||
* @see #createVelocityContext
|
||||
* @see #initTool
|
||||
* @see #setVelocityFormatterAttribute
|
||||
* @see #setDateToolAttribute
|
||||
* @see #setNumberToolAttribute
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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…
Reference in New Issue