Browse Source

fixed javadoc

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@962 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 17 years ago
parent
commit
884ff14359
  1. 5
      org.springframework.beans/src/main/java/org/springframework/beans/BeanWrapper.java

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

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2008 the original author or authors. * Copyright 2002-2009 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -39,7 +39,6 @@ import java.beans.PropertyDescriptor;
* @author Rod Johnson * @author Rod Johnson
* @author Juergen Hoeller * @author Juergen Hoeller
* @since 13 April 2001 * @since 13 April 2001
* @see #setExtractOldValueForEditor
* @see PropertyAccessor * @see PropertyAccessor
* @see PropertyEditorRegistry * @see PropertyEditorRegistry
* @see PropertyAccessorFactory#forBeanPropertyAccess * @see PropertyAccessorFactory#forBeanPropertyAccess
@ -77,6 +76,6 @@ public interface BeanWrapper extends ConfigurablePropertyAccessor {
* @return the property descriptor for the specified property * @return the property descriptor for the specified property
* @throws InvalidPropertyException if there is no such property * @throws InvalidPropertyException if there is no such property
*/ */
PropertyDescriptor getPropertyDescriptor(String propertyName) throws BeansException; PropertyDescriptor getPropertyDescriptor(String propertyName) throws InvalidPropertyException;
} }

Loading…
Cancel
Save