Examples of logModuleStates()


Examples of org.openoffice.setup.InstallData.logModuleStates()

                            // disable packages, that are not valid in user installation
                            if ( data.isUserInstallation() ) {
                                ModuleCtrl.setShowInUserInstallFlags(packageData);
                                if ( data.logModuleStates() ) {
                                    Dumper.logModuleStates(packageData, "ChooseDirectory: After setShowInUserInstallFlags");
                                }                  
                            }
                           
                            // Collecting packages to install
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                            // database changed -> ignore saved states
                            data.setTypicalSelectionStateSaved(false);
                            data.setCustomSelectionStateSaved(false);

                            if ( data.logModuleStates() ) {
                                Dumper.logModuleStates(packageData, "analyzeDatabase: Start");
                            }

                            // searching in the database for already installed packages
                            LogManager.setCommandsHeaderLine("Analyzing system database");
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                            // searching in the database for already installed packages
                            LogManager.setCommandsHeaderLine("Analyzing system database");
                            ModuleCtrl.setDatabaseSettings(packageData, data, installer);

                            if ( data.logModuleStates() ) {
                                Dumper.logModuleStates(packageData, "analyzeDatabase: After setDatabaseSettings");
                            }

                            // ModuleCtrl.analyzeDatabase();
                            ModuleCtrl.disableNonExistingPackages(packageData, data);
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                            }

                            // ModuleCtrl.analyzeDatabase();
                            ModuleCtrl.disableNonExistingPackages(packageData, data);
                            if ( data.logModuleStates() ) {
                                Dumper.logModuleStates(packageData, "ChooseDirectory: After disableNonExistingPackages");
                            }

                           // disable packages, that are not valid in user installation
                            if ( data.isUserInstallation() ) {
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                           // disable packages, that are not valid in user installation
                            if ( data.isUserInstallation() ) {
                                ModuleCtrl.setShowInUserInstallFlags(packageData);
                                if ( data.logModuleStates() ) {
                                    Dumper.logModuleStates(packageData, "ChooseDirectory: After setShowInUserInstallFlags");
                                }                  
                            }
                            
                            // Problem: If all submodules have flag IGNORE, the parent can also get IGNORE
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                            
                            // Problem: If all submodules have flag IGNORE, the parent can also get IGNORE
                            // That is interesting for language packs with three submodules.
                            ModuleCtrl.setParentDefaultModuleSettings(packageData);

                            if ( data.logModuleStates() ) {
                                Dumper.logModuleStates(packageData, "ChooseDirectory: After setParentDefaultModuleSettings");
                            }
                        }

                        data.setDatabaseAnalyzed(true);
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                        // Set module settings for hidden modules.
                        // Then it is possible to calculate the size of the installed product,
                        // to show a warning and to set the repeatDialog value to true

                        if ( data.logModuleStates() ) {
                            Dumper.logModuleStates(packageData, "ChooseComponentsCtrl: Before setHiddenModuleSettingsInstall");
                        }

                        ModuleCtrl.setHiddenModuleSettingsInstall(packageData);
                        // Dumper.dumpInstallPackages(packageData);
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                        }

                        ModuleCtrl.setHiddenModuleSettingsInstall(packageData);
                        // Dumper.dumpInstallPackages(packageData);

                        if ( data.logModuleStates() ) {
                            Dumper.logModuleStates(packageData, "ChooseComponentsCtrl: After setHiddenModuleSettingsInstall");
                        }

                        // Collecting packages to install
                        Vector installPackages = new Vector();
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

        InstallData data = InstallData.getInstance();
        PackageDescription packageData = SetupDataProvider.getPackageDescription();

        if ( nextButtonPressed ) {

            if ( data.logModuleStates() ) {
                Dumper.logModuleStates(packageData, "Choose UninstallationComponents: Before checkVisibleModulesUninstall");
            }

            // Check, if at least one visible module is selected for uninstallation
            data.setVisibleModulesChecked(false);
View Full Code Here

Examples of org.openoffice.setup.InstallData.logModuleStates()

                    if ( SystemManager.logModuleStates() ) {
                        installData.setLogModuleStates(true);
                    }

                    if ( installData.logModuleStates() ) {
                        Dumper.logModuleStates(packageData, "Prologue Dialog");
                    }

                    if (( installData.getOSType().equalsIgnoreCase("SunOS") ) && ( installData.isMultiLingual() )) {
                        ModuleCtrl.checkLanguagesPackages(packageData, installData);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.