fixed javadoc errors

This commit is contained in:
Juergen Hoeller
2008-11-28 13:56:30 +00:00
parent f8c690c542
commit 4f40a6c313
16 changed files with 17 additions and 33 deletions

View File

@@ -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.

View File

@@ -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 {