summaryrefslogtreecommitdiff
path: root/javainstaller2
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-05-06 09:39:05 +0000
committerKurt Zenker <kz@openoffice.org>2008-05-06 09:39:05 +0000
commitc4c8c8c268c3dfeb0a4ac6311e3744ec6a97024c (patch)
tree1e0e5469609f4ae0e0ed647a5021ec6d9ae03a8b /javainstaller2
parent3d3a6a49532e893a620b66faeaed2aa420ae0038 (diff)
INTEGRATION: CWS native147 (1.7.2); FILE MERGED
2008/04/21 13:02:18 is 1.7.2.2: #i88334# packages no longer relocatable 2008/04/16 12:56:46 is 1.7.2.1: #i88008# do not show license dialog
Diffstat (limited to 'javainstaller2')
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java21
1 files changed, 15 insertions, 6 deletions
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java
index e86dc0768afc..be69dc50422e 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/InstallData.java
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: InstallData.java,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -72,12 +72,13 @@ public class InstallData
static private boolean newerVersionExists = false;
static private boolean isMultiLingual = false;
static private boolean dontUpdate = false;
+ static private boolean hideEula = false;
static private boolean databaseQueried = false;
static private String installType; /* custom or typical installation */
static private String osType; /* Linux, SunOS, ... */
static private String installDir = null;
- static private String installRoot = null; /* Root directory for Solaris user installation */
static private String defaultDir = "/opt";
+ static private String installDefaultDir = null;
static private String productDir = null;
static private String packageFormat = null;
static private String architecture = null;
@@ -289,12 +290,12 @@ public class InstallData
installDir = dir;
}
- public String getInstallRoot() {
- return installRoot;
+ public String getInstallDefaultDir() {
+ return installDefaultDir;
}
- public void setInstallRoot(String dir) {
- installRoot = dir;
+ public void setInstallDefaultDir(String dir) {
+ installDefaultDir = dir;
}
public String getDatabasePath() {
@@ -564,6 +565,14 @@ public class InstallData
dontUpdate = value;
}
+ public boolean hideEula() {
+ return hideEula;
+ }
+
+ public void setHideEula(boolean value) {
+ hideEula = value;
+ }
+
public boolean databaseQueried() {
return databaseQueried;
}