java.awt.peer
Interface DialogPeer

All Superinterfaces:
ComponentPeer, ContainerPeer, WindowPeer
All Known Subinterfaces:
FileDialogPeer

public interface DialogPeer
extends WindowPeer

Disabled: no SafeJ information.

The peer interface for Dialog. This adds a couple of dialog specific features to the WindowPeer interface. The peer interfaces are intended only for use in porting the AWT. They are not intended for use by application developers, and developers should not implement peers nor invoke any of the peer methods directly on the peer instances.


Field Summary
 
Fields inherited from interface java.awt.peer.ComponentPeer
DEFAULT_OPERATION, NO_EMBEDDED_CHECK, RESET_OPERATION, SET_BOUNDS, SET_CLIENT_SIZE, SET_LOCATION, SET_SIZE
 
Method Summary
 void blockWindows(List<Window> windows)
          Block the specified windows.
 void setResizable(boolean resizeable)
          Sets if the dialog should be resizable or not.
 void setTitle(String title)
          Sets the title on the dialog window.
 
Methods inherited from interface java.awt.peer.WindowPeer
repositionSecurityWarning, setAlwaysOnTop, setModalBlocked, setOpacity, setOpaque, toBack, toFront, updateFocusableWindowState, updateIconImages, updateMinimumSize, updateWindow
 
Methods inherited from interface java.awt.peer.ContainerPeer
beginLayout, beginValidate, endLayout, endValidate, getInsets
 
Methods inherited from interface java.awt.peer.ComponentPeer
applyShape, canDetermineObscurity, checkImage, coalescePaintEvent, createBuffers, createImage, createImage, createVolatileImage, destroyBuffers, dispose, flip, getBackBuffer, getColorModel, getFontMetrics, getGraphics, getGraphicsConfiguration, getLocationOnScreen, getMinimumSize, getPreferredSize, getToolkit, handleEvent, handlesWheelScrolling, isFocusable, isObscured, isReparentSupported, layout, paint, prepareImage, print, reparent, requestFocus, setBackground, setBounds, setEnabled, setFont, setForeground, setVisible, setZOrder, updateCursorImmediately, updateGraphicsData
 

Method Detail

setTitle

void setTitle(String title)
Class is disabled.

Sets the title on the dialog window.

Parameters:
title - the title to set
See Also:
Dialog.setTitle(String)

setResizable

void setResizable(boolean resizeable)
Class is disabled.

Sets if the dialog should be resizable or not.

Parameters:
resizeable - true when the dialog should be resizable, false if not
See Also:
Dialog.setResizable(boolean)

blockWindows

void blockWindows(List<Window> windows)
Class is disabled.

Block the specified windows. This is used for modal dialogs.

Parameters:
windows - the windows to block
See Also:
Dialog.modalShow(), Dialog#blockWindows()