Skip to content

Commit

Permalink
Improve Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Jun 27, 2023
1 parent 3e287ac commit 191df1c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions java/jakarta/el/ELResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>null</code>
* @throws PropertyNotFoundException If the base/property combination provided to the resolver is one that the
Expand Down

0 comments on commit 191df1c

Please sign in to comment.