Class Information

java.lang.Object
  |
  +--Information
All Implemented Interfaces:
java.awt.event.ActionListener, java.util.EventListener

public class Information
extends java.lang.Object
implements java.awt.event.ActionListener

This class implements a simple information window.

Version:
1.0
Author:
Thomas Dreibholz (Dreibholz@bigfoot.com)

Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          actionPerformed() of ActionListener interface
 void close()
           
 void show(java.lang.String title, java.lang.String text)
          Show information window with textfield.
 void show(java.lang.String title, java.lang.String t1, java.lang.String t2, java.lang.String t3)
          Show 3-row information window.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

show

public void show(java.lang.String title,
                 java.lang.String t1,
                 java.lang.String t2,
                 java.lang.String t3)
Show 3-row information window.
Parameters:
title - Window title.
t1 - String #1.
t2 - String #2.
t3 - String #3.

show

public void show(java.lang.String title,
                 java.lang.String text)
Show information window with textfield.
Parameters:
title - Window title.
text - Text for textfield.

close

public void close()

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
actionPerformed() of ActionListener interface
Specified by:
actionPerformed in interface java.awt.event.ActionListener