This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 12f8186cb1 Update docs
12f8186cb1 is described below
commit 12f8186cb15a475fb4537771a705363a7f3d08f7
Author: James Bognar <[email protected]>
AuthorDate: Sun Dec 28 12:54:33 2025 -0500
Update docs
---
.../org/apache/juneau/commons/reflect/ParameterInfo.java | 12 ++++++------
.../java/org/apache/juneau/commons/reflect/Visibility.java | 8 ++++----
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git
a/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/ParameterInfo.java
b/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/ParameterInfo.java
index 7ac963476b..526a9978d5 100644
---
a/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/ParameterInfo.java
+++
b/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/ParameterInfo.java
@@ -36,7 +36,7 @@ import org.apache.juneau.commons.utils.*;
* This class provides a convenient wrapper around {@link Parameter} that
extends the standard Java reflection
* API with additional functionality for parameter introspection, annotation
handling, and name resolution.
* It supports resolving parameter names from bytecode (when compiled with
<c>-parameters</c>) or from
- * {@link org.apache.juneau.annotation.Name Name} annotations.
+ * {@link org.apache.juneau.annotation.Name @Name} annotations.
*
* <h5 class='section'>Features:</h5>
* <ul class='spaced-list'>
@@ -77,7 +77,7 @@ import org.apache.juneau.commons.utils.*;
* <p>
* Parameter names are resolved in the following order:
* <ol class='spaced-list'>
- * <li>{@link org.apache.juneau.annotation.Name Name} annotation
value (if present)
+ * <li>{@link org.apache.juneau.annotation.Name @Name} annotation
value (if present)
* <li>Bytecode parameter names (if compiled with
<c>-parameters</c> flag)
* <li><c>arg0</c>, <c>arg1</c>, etc. (fallback if names
unavailable)
* </ol>
@@ -400,7 +400,7 @@ public class ParameterInfo extends ElementInfo implements
Annotatable {
* <p>
* Searches for the parameter name in the following order:
* <ol>
- * <li>{@link org.apache.juneau.annotation.Name Name} annotation
value
+ * <li>{@link org.apache.juneau.annotation.Name @Name} annotation
value
* <li>Bytecode parameter name (if available and not disabled via
system property)
* <li>Matching parameters in parent classes/interfaces
* </ol>
@@ -409,7 +409,7 @@ public class ParameterInfo extends ElementInfo implements
Annotatable {
* This method is used for mapping constructor parameters to bean
properties.
*
* <p>
- * <b>Note:</b> This is different from {@link #getResolvedQualifier()}
which looks for {@link org.apache.juneau.annotation.Named Named}
+ * <b>Note:</b> This is different from {@link #getResolvedQualifier()}
which looks for {@link org.apache.juneau.annotation.Named @Named}
* annotations for bean injection purposes.
*
* @return The parameter name if found, or <jk>null</jk> if not
available.
@@ -422,14 +422,14 @@ public class ParameterInfo extends ElementInfo implements
Annotatable {
* Finds the bean injection qualifier for this parameter.
*
* <p>
- * Searches for the {@link org.apache.juneau.annotation.Named Named}
annotation value to determine
+ * Searches for the {@link org.apache.juneau.annotation.Named @Named}
annotation value to determine
* which named bean should be injected.
*
* <p>
* This method is used by the {@link org.apache.juneau.cp.BeanStore}
for bean injection.
*
* <p>
- * <b>Note:</b> This is different from {@link #getResolvedName()} which
looks for {@link org.apache.juneau.annotation.Name Name}
+ * <b>Note:</b> This is different from {@link #getResolvedName()} which
looks for {@link org.apache.juneau.annotation.Name @Name}
* annotations for bean property mapping.
*
* @return The bean qualifier name if {@code @Named} annotation is
found, or <jk>null</jk> if not annotated.
diff --git
a/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/Visibility.java
b/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/Visibility.java
index c59591316b..0027a3ecde 100644
---
a/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/Visibility.java
+++
b/juneau-core/juneau-commons/src/main/java/org/apache/juneau/commons/reflect/Visibility.java
@@ -31,10 +31,10 @@ import java.lang.reflect.*;
* <p>
* Used in conjunction with the following bean context properties:
* <ul class='javatree'>
- * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanConstructorVisibility(Visibility)}
- * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanClassVisibility(Visibility)}
- * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanFieldVisibility(Visibility)}
- * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanMethodVisibility(Visibility)}
+ * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanConstructorVisibility}
+ * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanClassVisibility}
+ * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanFieldVisibility}
+ * <li class='jm'>{@link
org.apache.juneau.BeanContext.Builder#beanMethodVisibility}
* </ul>
*
*/