-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta
-
sparc
-
solaris_2.6
Name: aaR10142 Date: 01/12/2001
JTabbedPane.setDisplayedMnemonicIndexAt(int tabIndex, int mnemonicIndex)
javadoc was coppied from AbstractButton class and is incorrect.
The doc describes
setDisplayedMnemonicIndexAt(int mnemonicIndex) with one parameter(1), and refer
to non existent methods setMnemonic()(2),
and does not say, that this method set mnemonic value, corresponding to the
displayed mnemonic, by itself.
Javadoc
--------------------------------------
public void setDisplayedMnemonicIndexAt(int tabIndex,
int mnemonicIndex)
throws IllegalArgumentException
Provides a hint to the look and feel as to which
character in the text should be decorated to
represent the mnemonic. Not all look and feels
may support this. A value of -1 indicates either
there is no mnemonic, the mnemonic character is
not contained in the string, or the developer
does not wish the mnemonic to be displayed.
The value of this is updated as the properties
relating to the mnemonic change (such as the
mnemonic itself, the text...). You should only
ever have to call this if you do not wish the
default character to be underlined. For example,
if the text was 'Save As', with a mnemonic of
'a', and you wanted the 'A' to be decorated, as
'Save As', you would have to invoke
setDisplayedMnemonicIndex(5) after invoking
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (1)
setMnemonic(KeyEvent.VK_A).
^^^^^^^^^^^^^^^^^^^^^^^^^^^ (2)
-------------------------------------
Please provide correct doc for this method.
One more problem with this doc.
the </code tag was not closed by ">"
and the ">=" and "<" sign should be changed to ">=" and "<".
--------------------------------
* @exception IllegalArgumentException will be thrown if
* <code>tabIndex</code is out of bounds
^^^^
* @exception IllegalArgumentException will be thrown if
* <code>mnemonicIndex</code is >= length of the tab
^^^ ^^^
* title , or < -1
^^^
---------------------------------
======================================================================