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.
-
Dialog(Frame, String)
- Creates a Dialog Component.
-
actionPerformed(ActionEvent)
-
-
addActionListener(ActionListener)
-
-
display()
-
-
display(int, int)
-
-
getTitle()
- Gets the title for this Dialog.
-
hide()
-
-
removeActionListener(ActionListener)
-
-
setTitle(String)
- Sets the title for this Dialog to the specified title.
Dialog
public Dialog(Frame parent,
String title)
- Creates a Dialog Component.
- Parameters:
- parent - the parent component that is responsible for this popup.
setTitle
public void setTitle(String title)
- Sets the title for this Dialog to the specified title.
- Parameters:
- title - the specified title of this Dialog
getTitle
public String getTitle()
- Gets the title for this Dialog.
- Returns:
- the specified title of this Dialog
hide
public void hide()
display
public void display()
display
public void display(int xpos,
int ypos)
actionPerformed
public void actionPerformed(ActionEvent e)
addActionListener
public void addActionListener(ActionListener al)
removeActionListener
public void removeActionListener(ActionListener al)
All Packages Class Hierarchy This Package Previous Next Index