summaryrefslogtreecommitdiff
path: root/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java
diff options
context:
space:
mode:
Diffstat (limited to 'javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java')
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java
index fc14c238da0b..39342969dca2 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/Controller/InstallationCompletedCtrl.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -48,7 +48,7 @@ public class InstallationCompletedCtrl extends PanelController {
super("InstallationCompleted", new installationCompleted());
helpFile = "String_Helpfile_InstallationCompleted";
}
-
+
public void beforeShow() {
InstallData installData = InstallData.getInstance();
ProductDescription productData = SetupDataProvider.getProductDescription();
@@ -58,12 +58,12 @@ public class InstallationCompletedCtrl extends PanelController {
getSetupFrame().setButtonEnabled(false, getSetupFrame().BUTTON_HELP);
getSetupFrame().removeButtonIcon(getSetupFrame().BUTTON_NEXT);
getSetupFrame().setButtonSelected(getSetupFrame().BUTTON_NEXT);
-
+
installationCompleted panel = (installationCompleted)getPanel();
panel.setDetailsButtonActionCommand(getSetupFrame().ACTION_DETAILS);
panel.addDetailsButtonActionListener(getSetupFrame().getSetupActionListener());
- if ( installData.isAbortedInstallation() ) {
+ if ( installData.isAbortedInstallation() ) {
String titleText = ResourceManager.getString("String_InstallationCompleted1_Abort");
panel.setTitleText(titleText);
String dialogText = ResourceManager.getString("String_InstallationCompleted2_Abort");
@@ -72,7 +72,7 @@ public class InstallationCompletedCtrl extends PanelController {
String titleText = ResourceManager.getString("String_InstallationCompleted1_Error");
panel.setTitleText(titleText);
String dialogText = ResourceManager.getString("String_InstallationCompleted2_Error");
- panel.setDialogText(dialogText);
+ panel.setDialogText(dialogText);
}
htmlInfoText = InfoCtrl.setHtmlFrame("header", htmlInfoText);
@@ -83,27 +83,27 @@ public class InstallationCompletedCtrl extends PanelController {
public void duringShow() {
Thread t = new Thread() {
public void run() {
- PackageDescription packageData = SetupDataProvider.getPackageDescription();
+ PackageDescription packageData = SetupDataProvider.getPackageDescription();
Installer installer = InstallerFactory.getInstance();
installer.postInstall(packageData);
}
};
- t.start();
+ t.start();
}
public String getNext() {
return null;
}
-
+
public String getPrevious() {
return null;
}
-
+
public final String getHelpFileName () {
return this.helpFile;
}
-
+
public String getDialogText() {
return htmlInfoText;
}