Package org.scijava.ui
Interface ApplicationFrame
-
public interface ApplicationFrameCommon interface for top-level application frames.- Author:
- Grant Harris, Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivate()Activate the application frame, bringing it to the front.intgetLocationX()Gets the X coordinate of the application frame's top left corner.intgetLocationY()Gets the Y coordinate of the application frame's top left corner.voidsetLocation(int x, int y)Sets the coordinates of the application frame's top left corner.voidsetVisible(boolean visible)Show or hide the application frame
-
-
-
Method Detail
-
setLocation
void setLocation(int x, int y)Sets the coordinates of the application frame's top left corner.
-
getLocationX
int getLocationX()
Gets the X coordinate of the application frame's top left corner.
-
getLocationY
int getLocationY()
Gets the Y coordinate of the application frame's top left corner.
-
activate
void activate()
Activate the application frame, bringing it to the front.
-
setVisible
void setVisible(boolean visible)
Show or hide the application frame
-
-