From 191df1c2d6373a7842c7d59744829618ad194bd1 Mon Sep 17 00:00:00 2001 From: Mark Thomas Date: Tue, 27 Jun 2023 13:11:57 +0100 Subject: [PATCH] Improve Javadoc --- java/jakarta/el/ELResolver.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/java/jakarta/el/ELResolver.java b/java/jakarta/el/ELResolver.java index 49f6a5a1059a..c356fb379d20 100644 --- a/java/jakarta/el/ELResolver.java +++ b/java/jakarta/el/ELResolver.java @@ -60,13 +60,15 @@ public Object invoke(ELContext context, Object base, Object method, Class[] p } /** - * Obtain the type of the given property on the given object using the given context. + * Obtain the most generally acceptable type that may be used to set the given property on the given object using + * the given context. * * @param context The EL context for this evaluation * @param base The base object on which the property is to be found * @param property The property whose type is to be returned * - * @return the type of the provided property + * @return the most general type that maybe used to set the provided property or {@code null} if the resolver is + * read-only. * * @throws NullPointerException If the supplied context is null * @throws PropertyNotFoundException If the base/property combination provided to the resolver is one that the