Reorder Javadoc tags consistently

See gh-1479
This commit is contained in:
Stéphane Nicoll
2025-03-07 11:50:06 +01:00
parent 00e1e68062
commit ae5b46018f
141 changed files with 143 additions and 144 deletions

View File

@@ -35,8 +35,8 @@ import org.springframework.util.Assert;
* SAX {@code ContentHandler} that transforms callback calls to DOM {@code Node}s.
*
* @author Arjen Poutsma
* @see org.w3c.dom.Node
* @since 1.0.0
* @see org.w3c.dom.Node
*/
public class DomContentHandler implements ContentHandler {

View File

@@ -37,10 +37,10 @@ import org.springframework.util.StringUtils;
* allows for prefixes to be specified as well.
*
* @author Arjen Poutsma
* @since 1.0.0
* @see javax.xml.namespace.QName
* @see javax.xml.namespace.QName#toString()
* @see javax.xml.namespace.QName#valueOf(String)
* @since 1.0.0
*/
public class QNameEditor extends PropertyEditorSupport {

View File

@@ -27,8 +27,8 @@ import org.springframework.util.StringUtils;
* Helper class for using {@link QName}.
*
* @author Arjen Poutsma
* @see javax.xml.namespace.QName
* @since 1.0.0
* @see javax.xml.namespace.QName
*/
public abstract class QNameUtils {

View File

@@ -30,11 +30,11 @@ import org.xml.sax.ext.LexicalHandler;
* defined in {@link XMLReader}, and does not recognize any features
*
* @author Arjen Poutsma
* @since 1.0.0
* @see #setContentHandler(org.xml.sax.ContentHandler)
* @see #setDTDHandler(org.xml.sax.DTDHandler)
* @see #setEntityResolver(org.xml.sax.EntityResolver)
* @see #setErrorHandler(org.xml.sax.ErrorHandler)
* @since 1.0.0
*/
public abstract class AbstractXmlReader implements XMLReader {

View File

@@ -25,8 +25,8 @@ import javax.xml.transform.stream.StreamResult;
* resulting string can be retrieved via {@code toString()}.
*
* @author Arjen Poutsma
* @see #toString()
* @since 1.0.0
* @see #toString()
*/
public class StringResult extends StreamResult {

View File

@@ -33,8 +33,8 @@ import org.apache.commons.logging.LogFactory;
* thread-safe.
*
* @author Arjen Poutsma
* @see Transformer
* @since 1.0.0
* @see Transformer
*/
public abstract class TransformerObjectSupport {

View File

@@ -29,8 +29,8 @@ import org.xml.sax.SAXParseException;
* Instances of this class are designed to be thread safe.
*
* @author Arjen Poutsma
* @see XmlValidatorFactory#createValidator(org.springframework.core.io.Resource, String)
* @since 1.0.0
* @see XmlValidatorFactory#createValidator(org.springframework.core.io.Resource, String)
*/
public interface XmlValidator {

View File

@@ -36,8 +36,8 @@ import org.springframework.xml.JaxpVersion;
* implementations to a custom, SAX-based implementation.
*
* @author Arjen Poutsma
* @see XmlValidator
* @since 1.0.0
* @see XmlValidator
*/
public abstract class XmlValidatorFactory {

View File

@@ -32,8 +32,8 @@ import org.w3c.dom.Node;
*
* @author Arjen Poutsma
* @author Greg Turnquist
* @see #createXPathExpression(String)
* @since 1.0.0
* @see #createXPathExpression(String)
*/
abstract class JaxenXPathExpressionFactory {

View File

@@ -36,8 +36,8 @@ import org.w3c.dom.Node;
* Namespaces can be set using the {@code namespaces} property.
*
* @author Arjen Poutsma
* @see <a href="http://www.jaxen.org/">Jaxen</a>
* @since 1.0.0
* @see <a href="http://www.jaxen.org/">Jaxen</a>
*/
public class JaxenXPathTemplate extends AbstractXPathTemplate {

View File

@@ -37,8 +37,8 @@ import org.springframework.xml.namespace.SimpleNamespaceContext;
*
* @author Arjen Poutsma
* @author Greg Turnquist
* @see #createXPathExpression(String)
* @since 1.0.0
* @see #createXPathExpression(String)
*/
abstract class Jaxp13XPathExpressionFactory {

View File

@@ -54,8 +54,8 @@ import org.springframework.xml.transform.TraxUtils;
* Namespaces can be set using the {@code namespaces} property.
*
* @author Arjen Poutsma
* @see #setNamespaces(java.util.Map)
* @since 1.0.0
* @see #setNamespaces(java.util.Map)
*/
public class Jaxp13XPathTemplate extends AbstractXPathTemplate {

View File

@@ -28,8 +28,8 @@ import org.w3c.dom.Node;
* per node, assembling them in a List.
*
* @author Arjen Poutsma
* @see XPathOperations#evaluate(String,javax.xml.transform.Source,NodeCallbackHandler)
* @since 1.0.0
* @see XPathOperations#evaluate(String,javax.xml.transform.Source,NodeCallbackHandler)
*/
public interface NodeCallbackHandler {

View File

@@ -26,11 +26,11 @@ import org.w3c.dom.Node;
* handling.
*
* @author Arjen Poutsma
* @since 1.0.0
* @see XPathOperations#evaluate(String,javax.xml.transform.Source,NodeMapper)
* @see XPathOperations#evaluateAsObject(String,javax.xml.transform.Source,NodeMapper)
* @see XPathExpression#evaluate(org.w3c.dom.Node,NodeMapper)
* @see XPathExpression#evaluateAsObject(org.w3c.dom.Node,NodeMapper)
* @since 1.0.0
*/
public interface NodeMapper<T> {

View File

@@ -33,8 +33,8 @@ import org.springframework.util.Assert;
* implementations to Jaxen.
*
* @author Arjen Poutsma
* @see XPathExpression
* @since 1.0.0
* @see XPathExpression
*/
public abstract class XPathExpressionFactory {

View File

@@ -31,8 +31,8 @@ import org.springframework.util.CollectionUtils;
* and Jaxen XPaths.
*
* @author Arjen Poutsma
* @see #setExpression(String)
* @since 1.0.0
* @see #setExpression(String)
*/
public class XPathExpressionFactoryBean implements FactoryBean<XPathExpression>, InitializingBean {

View File

@@ -31,9 +31,9 @@ import org.w3c.dom.Node;
* {@link XPathExpressionFactoryBean} for optimal performance, but less flexibility.
*
* @author Arjen Poutsma
* @since 1.0.0
* @see Jaxp13XPathTemplate
* @see JaxenXPathTemplate
* @since 1.0.0
*/
public interface XPathOperations {

View File

@@ -47,8 +47,8 @@ import org.springframework.xml.xsd.XsdSchema;
* Schema.
*
* @author Arjen Poutsma
* @see <a href="http://ws.apache.org/commons/XmlSchema/">Commons XML Schema</a>
* @since 1.5.0
* @see <a href="http://ws.apache.org/commons/XmlSchema/">Commons XML Schema</a>
*/
public class CommonsXsdSchema implements XsdSchema {

View File

@@ -57,8 +57,8 @@ import org.springframework.xml.xsd.XsdSchemaCollection;
* schemas.
*
* @author Arjen Poutsma
* @see <a href="http://ws.apache.org/commons/XmlSchema/">Commons XML Schema</a>
* @since 1.5.0
* @see <a href="http://ws.apache.org/commons/XmlSchema/">Commons XML Schema</a>
*/
public class CommonsXsdSchemaCollection implements XsdSchemaCollection, InitializingBean, ResourceLoaderAware {