Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
Add Javadoc for setRenderer method (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadikhani committed Apr 17, 2020
1 parent fbd792c commit 9babe3b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,10 @@ private void refreshValue() {
* @param renderer
* a renderer for the items in the selection list of the
* ComboBox, not <code>null</code>
*
* Note that filtering of the ComboBox is not affected by the renderer that
* is set here. Filtering is done on the original values and can be affected
* by {@link #setItemLabelGenerator(ItemLabelGenerator)}.
*/
public void setRenderer(Renderer<T> renderer) {
Objects.requireNonNull(renderer, "The renderer must not be null");
Expand Down

0 comments on commit 9babe3b

Please sign in to comment.