Package com.sun.jna.platform
Class DesktopWindow
- java.lang.Object
- 
- com.sun.jna.platform.DesktopWindow
 
- 
 public class DesktopWindow extends java.lang.ObjectHolds some general information about a window.- Author:
- Andreas "PAX" Lück, onkelpax-git[at]yahoo.de
 
- 
- 
Constructor SummaryConstructors Constructor Description DesktopWindow(WinDef.HWND hwnd, java.lang.String title, java.lang.String filePath, java.awt.Rectangle locAndSize)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFilePath()WinDef.HWNDgetHWND()java.awt.RectanglegetLocAndSize()java.lang.StringgetTitle()
 
- 
- 
- 
Constructor Detail- 
DesktopWindowpublic DesktopWindow(WinDef.HWND hwnd, java.lang.String title, java.lang.String filePath, java.awt.Rectangle locAndSize) - Parameters:
- hwnd- The associated window handle for this window.
- title- The title text of the window.
- filePath- The full file path to the main process that created the window.
- locAndSize- The window's location on screen and its dimensions.
 
 
- 
 - 
Method Detail- 
getHWNDpublic WinDef.HWND getHWND() - Returns:
- The associated window handle for this window.
 
 - 
getTitlepublic java.lang.String getTitle() - Returns:
- The title text of the window.
 
 - 
getFilePathpublic java.lang.String getFilePath() - Returns:
- The full file path to the main process that created the window.
 
 - 
getLocAndSizepublic java.awt.Rectangle getLocAndSize() - Returns:
- The window's location on screen and its dimensions.
 
 
- 
 
-