7081580: Specification for MouseInfo.getNumberOfButtons() doesn't contain info about "awt.mouse.numButtons"
authorssadetsky
Thu, 09 Apr 2015 18:09:55 +0400
changeset 30453 0a9513d4c1bb
parent 30452 9cc90ad7cf9a
child 30454 5611c3a5e7da
7081580: Specification for MouseInfo.getNumberOfButtons() doesn't contain info about "awt.mouse.numButtons" Reviewed-by: serb, ant
jdk/src/java.desktop/share/classes/java/awt/MouseInfo.java
--- 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 {