Fix various javadoc warnings
This commit is contained in:
@@ -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 {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user