@@ -72,7 +72,7 @@ public static class Builder {
72
72
/**
73
73
* Includes the resources matching the specified pattern.
74
74
* @param reachableType the type that should be reachable for this hint to apply
75
- * @param includes the include patterns
75
+ * @param includes the include patterns (see {@link ResourcePatternHint} documentation)
76
76
* @return {@code this}, to facilitate method chaining
77
77
*/
78
78
public Builder includes (TypeReference reachableType , String ... includes ) {
@@ -84,7 +84,7 @@ public Builder includes(TypeReference reachableType, String... includes) {
84
84
85
85
/**
86
86
* Includes the resources matching the specified pattern.
87
- * @param includes the include patterns
87
+ * @param includes the include patterns (see {@link ResourcePatternHint} documentation)
88
88
* @return {@code this}, to facilitate method chaining
89
89
*/
90
90
public Builder includes (String ... includes ) {
@@ -94,7 +94,7 @@ public Builder includes(String... includes) {
94
94
/**
95
95
* Exclude resources matching the specified pattern.
96
96
* @param reachableType the type that should be reachable for this hint to apply
97
- * @param excludes the excludes pattern
97
+ * @param excludes the excludes pattern (see {@link ResourcePatternHint} documentation)
98
98
* @return {@code this}, to facilitate method chaining
99
99
*/
100
100
public Builder excludes (TypeReference reachableType , String ... excludes ) {
@@ -106,7 +106,7 @@ public Builder excludes(TypeReference reachableType, String... excludes) {
106
106
107
107
/**
108
108
* Exclude resources matching the specified pattern.
109
- * @param excludes the excludes pattern
109
+ * @param excludes the excludes pattern (see {@link ResourcePatternHint} documentation)
110
110
* @return {@code this}, to facilitate method chaining
111
111
*/
112
112
public Builder excludes (String ... excludes ) {
0 commit comments