KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > wminstaller > screens > ScreenDone


1 package de.webman.wminstaller.screens;
2
3 import de.webman.wminstaller.app.*;
4 import javax.swing.*;
5
6 /**
7  * Implementierung des "Dankeschön" screens
8  *
9  * @author <a HREF="mailto:ulf@webman.de">Ulf Goldammer</a>
10  * @version $Revision: 1.2 $
11  **/

12 public class ScreenDone extends InstallerScreen
13 {
14     /* $Id: ScreenDone.java,v 1.2 2002/02/11 18:26:09 gregor Exp $ */
15
16     public ScreenDone( Installer wmi, int bt) {
17         
18         super( wmi, bt);
19         
20         addScreen( "Die Installation war erfolgreich.", new JLabel("Done"));
21     }
22
23     public boolean storeValues() {
24         /* nothing todo */
25         return true;
26     }
27
28     public void onEnter() {
29     }
30 }
31
32
33
Popular Tags