7081580: Specification for MouseInfo.getNumberOfButtons() doesn't contain info about "awt.mouse.numButtons"
Reviewed-by: serb, ant
--- a/jdk/src/java.desktop/share/classes/java/awt/MouseInfo.java Thu Apr 09 17:41:08 2015 +0400
+++ b/jdk/src/java.desktop/share/classes/java/awt/MouseInfo.java Thu Apr 09 18:09:55 2015 +0400
@@ -113,9 +113,13 @@
/**
* Returns the number of buttons on the mouse.
* On systems without a mouse, returns <code>-1</code>.
+ * The number of buttons is obtained from the AWT Toolkit
+ * by requesting the {@code "awt.mouse.numButtons"} desktop property
+ * which is set by the underlying native platform.
*
* @exception HeadlessException if GraphicsEnvironment.isHeadless() returns true
* @return number of buttons on the mouse
+ * @see Toolkit#getDesktopProperty
* @since 1.5
*/
public static int getNumberOfButtons() throws HeadlessException {