All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.bulletproof.gui.Dialog

java.lang.Object
   |
   +----com.bulletproof.gui.Component
           |
           +----com.bulletproof.gui.Container
                   |
                   +----com.bulletproof.gui.Dialog

public class Dialog
extends Container
implements ActionListener
Class Dialog represents a class for displaying a Dialog component.


Constructor Index

 o Dialog(Frame, String)
Creates a Dialog Component.

Method Index

 o actionPerformed(ActionEvent)
 o addActionListener(ActionListener)
 o display()
 o display(int, int)
 o getTitle()
Gets the title for this Dialog.
 o hide()
 o removeActionListener(ActionListener)
 o setTitle(String)
Sets the title for this Dialog to the specified title.

Constructors

 o Dialog
 public Dialog(Frame parent,
               String title)
Creates a Dialog Component.

Parameters:
parent - the parent component that is responsible for this popup.

Methods

 o setTitle
 public void setTitle(String title)
Sets the title for this Dialog to the specified title.

Parameters:
title - the specified title of this Dialog
 o getTitle
 public String getTitle()
Gets the title for this Dialog.

Returns:
the specified title of this Dialog
 o hide
 public void hide()
 o display
 public void display()
 o display
 public void display(int xpos,
                     int ypos)
 o actionPerformed
 public void actionPerformed(ActionEvent e)
 o addActionListener
 public void addActionListener(ActionListener al)
 o removeActionListener
 public void removeActionListener(ActionListener al)

All Packages  Class Hierarchy  This Package  Previous  Next  Index