Hi,
I'm displaying a JOptionPane having options/buttons as 'Object[] options'.Each of these options is of type AbstractAction.
I want to add tooltips to these buttons on the JOptionPane.
I tried using
someAction.putValue(AbstractAction.SHORT_DESCRIPTION, "ToolTip Text")
but it doesn't work.
Thanks in advance,