public class PointerInfo extends Object
GraphicsDevice where the pointer is and the
Point that represents the coordinates of the pointer.
Instances of this class should be obtained via MouseInfo. The PointerInfo instance is not updated dynamically as the mouse moves. To get the updated location, you must call MouseInfo again.
MouseInfo.getPointerInfo()
| Modifier and Type | Method and Description |
|---|---|
GraphicsDevice |
getDevice()
Returns the
GraphicsDevice where the mouse pointer was at the moment this
PointerInfo was created.
|
Point |
getLocation()
Returns the
Point that represents the coordinates of the pointer on the screen.
|
public GraphicsDevicegetDevice()
GraphicsDevice where the mouse pointer was at the moment this
PointerInfo was created.
GraphicsDevice corresponding to the pointer
public PointgetLocation()
Point that represents the coordinates of the pointer on the screen. See
MouseInfo.getPointerInfo() for more information about coordinate calculation for multiscreen systems.
MouseInfo,
MouseInfo.getPointerInfo()