Fix various javadoc warnings

This commit is contained in:
Phillip Webb
2013-11-26 13:24:19 -08:00
parent c7c395d0d0
commit a31ac882c5
52 changed files with 112 additions and 162 deletions

View File

@@ -91,8 +91,6 @@ import org.springframework.util.ClassUtils;
* @see ConfigurableBeanFactory#addPropertyEditorRegistrar
* @see ConfigurableBeanFactory#registerCustomEditor
* @see org.springframework.validation.DataBinder#registerCustomEditor
* @see org.springframework.web.servlet.mvc.BaseCommandController#setPropertyEditorRegistrars
* @see org.springframework.web.servlet.mvc.BaseCommandController#initBinder
*/
public class CustomEditorConfigurer implements BeanFactoryPostProcessor, Ordered {

View File

@@ -29,13 +29,11 @@ import org.springframework.util.StringUtils;
* them in the UI form.
*
* <p>In web MVC code, this editor will typically be registered with
* {@code binder.registerCustomEditor} calls in an implementation
* of BaseCommandController's {@code initBinder} method.
* {@code binder.registerCustomEditor} calls.
*
* @author Juergen Hoeller
* @since 10.06.2003
* @see org.springframework.validation.DataBinder#registerCustomEditor
* @see org.springframework.web.servlet.mvc.BaseCommandController#initBinder
*/
public class CustomBooleanEditor extends PropertyEditorSupport {

View File

@@ -33,15 +33,13 @@ import org.springframework.util.StringUtils;
* and rendering them in the UI form.
*
* <p>In web MVC code, this editor will typically be registered with
* {@code binder.registerCustomEditor} calls in a custom
* {@code initBinder} method.
* {@code binder.registerCustomEditor}.
*
* @author Juergen Hoeller
* @since 28.04.2003
* @see java.util.Date
* @see java.text.DateFormat
* @see org.springframework.validation.DataBinder#registerCustomEditor
* @see org.springframework.web.servlet.mvc.BaseCommandController#initBinder
*/
public class CustomDateEditor extends PropertyEditorSupport {

View File

@@ -34,15 +34,13 @@ import org.springframework.util.StringUtils;
* and rendering them in the UI form.
*
* <p>In web MVC code, this editor will typically be registered with
* {@code binder.registerCustomEditor} calls in a custom
* {@code initBinder} method.
* {@code binder.registerCustomEditor} calls.
*
* @author Juergen Hoeller
* @since 06.06.2003
* @see Number
* @see java.text.NumberFormat
* @see org.springframework.validation.DataBinder#registerCustomEditor
* @see org.springframework.web.servlet.mvc.BaseCommandController#initBinder
*/
public class CustomNumberEditor extends PropertyEditorSupport {

View File

@@ -28,7 +28,6 @@ import org.springframework.util.StringUtils;
*
* @author Juergen Hoeller
* @see org.springframework.validation.DataBinder#registerCustomEditor
* @see org.springframework.web.servlet.mvc.BaseCommandController#initBinder
*/
public class StringTrimmerEditor extends PropertyEditorSupport {

View File

@@ -146,7 +146,7 @@ public class MutableSortDefinition implements SortDefinition, Serializable {
/**
* Return whether to toggle the ascending flag if the same property gets set again
* (that is, {@link #setProperty} gets called with already set property name again).
* (that is, {@code setProperty} gets called with already set property name again).
*/
public boolean isToggleAscendingOnProperty() {
return this.toggleAscendingOnProperty;