Modifier and Type | Method and Description |
---|---|
Window |
WDDMan.getWindowByTitle(java.lang.String title)
The function getWindowByTitle() finds and returns a window with the same
title as the parameter title (case sensitive).
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Window> |
Desktop.getVisibleWindows()
The function getVisibleWindows() returns the List of all visible windows
on the desktop.
|
java.util.List<Window> |
WDDMan.getVisibleWindows()
The function getWindows() returns a List of all current visible windows.
|
java.util.List<Window> |
Desktop.getWindows()
The function getWindows() returns the List of all windows on the desktop.
|
java.util.List<Window> |
WDDMan.getWindows()
The function getWindows() returns a List of all current windows.
|
java.util.List<Window> |
WDDMan.getWindowsByTitle(java.lang.String title)
The function getWindowsByTitle() finds and returns a List of all windows
with the same title as the parameter title (case sensitive).
|
Modifier and Type | Method and Description |
---|---|
void |
WDDMan.moveWindowToDesktop(Window window,
Desktop desktop)
The function moveWindowToDesktop(Window window, Desktop desktop) moves
the window window to the desktop desktop.
|