| Package java.awt.peer |
Previous |
Java API |
Index |
Next |
The dialog window peer interface specifies the methods that all implementations of Abstract Window Toolkit dialog windows must define.
public interface java.awt.peer.DialogPeer
extends java.awt.peer.WindowPeer
{
// Methods
public abstract void setResizable(boolean resizeable);
public abstract void setTitle(String title);
}
public abstract void setResizable(boolean resizeable)Sets the resizable flag.
Parameter Description resizable true if the dialog window is resizable; false otherwise
public abstract void setTitle(String title)Sets the title of the dialog window.
Parameter Description title the new title
| © 1996 Sun Microsystems, Inc. All rights reserved. |