Interface WindowDriver
- All Known Implementing Classes:
DefaultInternalFrameDriver, DefaultWindowDriver
public interface WindowDriver
Defines how to work with windows.
-
Method Summary
Modifier and TypeMethodDescriptionvoidactivate(ComponentOperator oper) Activates a window.voidclose(ComponentOperator oper) Closes a window.voidmove(ComponentOperator oper, int x, int y) Change window location.voidresize(ComponentOperator oper, int width, int height) Change window size.
-
Method Details
-
activate
-
close
-
move
Change window location.- Parameters:
oper- Window operator.x- New x coordinatey- New y coordinate
-
resize
Change window size.- Parameters:
oper- Window operator.width- New window width.height- New window height.
-