|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
|||||
|
||||||
001 /************************************************************************* 002 * 003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 004 * 005 * Copyright 2008 by Sun Microsystems, Inc. 006 * 007 * OpenOffice.org - a multi-platform office productivity suite 008 * 009 * $RCSfile: AbortInstaller.java,v $ 010 * $Revision: 1.3 $ 011 * 012 * This file is part of OpenOffice.org. 013 * 014 * OpenOffice.org is free software: you can redistribute it and/or modify 015 * it under the terms of the GNU Lesser General Public License version 3 016 * only, as published by the Free Software Foundation. 017 * 018 * OpenOffice.org is distributed in the hope that it will be useful, 019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 021 * GNU Lesser General Public License version 3 for more details 022 * (a copy is included in the LICENSE file that accompanied this code). 023 * 024 * You should have received a copy of the GNU Lesser General Public License 025 * version 3 along with OpenOffice.org. If not, see 026 * <http://www.openoffice.org/license.html> 027 * for a copy of the LGPLv3 License. 028 * 029 ************************************************************************/ 030 031 package org.openoffice.setup.Util; 032 033 import org.openoffice.setup.InstallData; 034 import java.util.Vector; 035 036 public class AbortInstaller { 037 038 private AbortInstaller() { 039 } 040 041 static public void abortInstallProcess() { 042 InstallData installData = InstallData.getInstance(); 043 installData.setIsAbortedInstallation(true); 044 045 if ( installData.isInstallationMode() ) { 046 String log = "<b>Installation was aborted</b><br>"; 047 LogManager.addLogfileComment(log); 048 } else { 049 String log = "<b>Uninstallation was aborted</b><br>"; 050 LogManager.addLogfileComment(log); 051 } 052 053 } 054 055 }
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| This page was automatically generated by the LXR engine. The LXR team |
|