1 package de.webman.wminstaller.screens; 2 3 import de.webman.wminstaller.app.*; 4 import javax.swing.*; 5 6 12 public class ScreenDone extends InstallerScreen 13 { 14 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 25 return true; 26 } 27 28 public void onEnter() { 29 } 30 } 31 32 33 | Popular Tags |