Fix Javadoc errors

See gh-1467
This commit is contained in:
Stéphane Nicoll
2025-02-27 13:56:10 +01:00
parent 30d5f1e6a5
commit 4ffe014733
27 changed files with 86 additions and 162 deletions

View File

@@ -26,23 +26,12 @@ import org.springframework.util.StringUtils;
* PropertyEditor for {@code javax.xml.namespace.QName}, to populate a property of type
* QName from a String value.
* <p>
* Expects the syntax
*
* <pre>
* localPart
* </pre>
*
* or
*
* <pre>
* {namespace}localPart
* </pre>
*
* or
*
* <pre>
* {namespace}prefix:localPart
* </pre>
* Expects one of the following syntaxes:
* <ul>
* <li>{@code localPart}</li>
* <li>{@code {namespace}localPart}</li>
* <li>{@code {namespace}prefix:localPart}</li>
* </ul>
*
* This resembles the {@code toString()} representation of {@code QName} itself, but
* allows for prefixes to be specified as well.