public interface IFrame extends IGraphical
ITopWindow,
FrameTestObject,
FrameSubitemTestObject| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the associated frame.
|
void |
contextHelp()
Activate the context-sensitive Help
|
boolean |
isIconified()
Provides access to the iconified state of the frame
|
void |
maximize()
Maximizes the associated frame.
|
void |
minimize()
Iconifies the associated frame.
|
void |
move(java.awt.Point pt)
Moves the frame to the specified location within parent.
|
void |
resize(int width,
int height)
Resizes the frame to the specified width and height.
|
void |
restore()
Restores the associated frame.
|
click, click, click, click, doubleClick, doubleClick, doubleClick, doubleClick, drag, drag, drag, drag, dragToScreenPoint, dragToScreenPoint, dragToScreenPoint, getChildAtPoint, getClippedScreenRectangle, getScreenPoint, getScreenPoint, getScreenRectangle, hasFocus, hover, hover, hover, hover, isEnabled, isOpaque, isPointInObject, isShowing, mouseMove, mouseMove, nClick, nClickDrag, nClickDragToScreenPointvoid close()
classicsJava().close()
void maximize()
classicsJava().maximize()
void minimize()
classicsJava().minimize()
void restore()
classicsJava().restore()
boolean isIconified()
true if the frame is iconified. Return false if the
frame cannot be iconified.boolean isIconified = classicsJava().isIconified()
void resize(int width,
int height)
width - The new width in pixels sizeheight - The new height in pixel sizeclassicsJava().resize(500,600)
void move(java.awt.Point pt)
pt - The point specified in java.awt.Point to move the applicationclassicsJava().move(new java.awt.Point(0,0))
void contextHelp()
classicsJava().contextHelp()