Use consistent javadoc style for annotation links

Closes gh-13920
This commit is contained in:
Phillip Webb
2019-04-24 15:47:59 -07:00
parent 1e44aba772
commit 17aaf26590
365 changed files with 839 additions and 720 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -23,9 +23,10 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that a getter in a {@link ConfigurationProperties} object is deprecated. This
* annotation has no bearing on the actual binding processes, but it is used by the
* {@code spring-boot-configuration-processor} to add deprecation meta-data.
* Indicates that a getter in a {@link ConfigurationProperties @ConfigurationProperties}
* object is deprecated. This annotation has no bearing on the actual binding processes,
* but it is used by the {@code spring-boot-configuration-processor} to add deprecation
* meta-data.
* <p>
* This annotation <strong>must</strong> be used on the getter of the deprecated element.
*

View File

@@ -22,8 +22,8 @@ import java.util.Map;
/**
* A pojo with a complex generic signature.
*
* @author Stephane Nicoll
* @param <T> the generic type
* @author Stephane Nicoll
*/
public class UpperBoundGenericPojo<T extends Enum<T>> {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,11 +17,11 @@
package org.springframework.boot.configurationsample.specific;
import org.springframework.boot.configurationsample.ConfigurationProperties;
import org.springframework.boot.configurationsample.NestedConfigurationProperty;
/**
* Demonstrate inner classes end up in metadata regardless of position in hierarchy and
* without the use of
* {@link org.springframework.boot.configurationsample.NestedConfigurationProperty}.
* without the use of {@link NestedConfigurationProperty @NestedConfigurationProperty}.
*
* @author Madhura Bhave
*/