setVisible
Frame f = new Frame(GraphicsConfiguration gc);
Rectangle bounds = gc.getBounds();
f.setLocation(10 + bounds.x, 10 + bounds.y);
...
f.setVisible(true);
----------------------------------------
public void setVisible(boolean b)
Shows or hides this component depending on the value of parameter b.
Parameters:
b - if true, shows this component; otherwise, hides this component
Since:
JDK1.1
See Also:
isVisible()