Package java.awt.peer Previous
Previous
Java API
Java API
Index
Index
Next
Next

Interface DialogPeer

Methods

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);	
}


Methods


setResizable

public abstract void setResizable(boolean  resizeable) 

Sets the resizable flag.

ParameterDescription
resizable true if the dialog window is resizable; false otherwise


setTitle

public abstract void setTitle(String  title) 

Sets the title of the dialog window.

ParameterDescription
title the new title



Top© 1996 Sun Microsystems, Inc. All rights reserved.