Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.installer / org.gvsig.installer.swing / org.gvsig.installer.swing.impl / src / main / java / org / gvsig / installer / swing / impl / execution / InstallWizardPanel_ext.java @ 43126

History | View | Annotate | Download (2.31 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or modify it under
7
 * the terms of the GNU General Public License as published by the Free Software
8
 * Foundation; either version 3 of the License, or (at your option) any later
9
 * version.
10
 *
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14
 * details.
15
 *
16
 * You should have received a copy of the GNU General Public License along with
17
 * this program; if not, write to the Free Software Foundation, Inc., 51
18
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.installer.swing.impl.execution;
24

    
25
import java.util.List;
26
import org.gvsig.gui.beans.wizard.WizardPanel;
27

    
28
import org.gvsig.installer.lib.api.PackageInfo;
29
import org.gvsig.installer.lib.api.execution.InstallPackageService;
30
import org.gvsig.installer.lib.api.execution.InstallPackageServiceException;
31
import org.gvsig.installer.swing.api.execution.InstallWizardPanel;
32
import org.gvsig.installer.swing.impl.execution.panel.SelectBundlesPanel;
33

    
34
public interface InstallWizardPanel_ext
35
        extends
36
        InstallWizardPanel, WizardPanel {
37

    
38
    /**
39
     * If this method is selected the first window of the wizard is not visible
40
     * and the installation process takes the installers form the default
41
     * directory.
42
     *
43
     * @throws InstallPackageServiceException if there an error reading the
44
     * default directory.
45
     */
46
    public void installFromDefaultDirectory()
47
            throws InstallPackageServiceException;
48

    
49
    /**
50
     * @return the installerExecutionService
51
     */
52
    public InstallPackageService getInstallerExecutionService();
53

    
54
    /**
55
     * @return the installersToInstall
56
     */
57
    public List<PackageInfo> getPackagesToInstall();
58

    
59
    public SelectBundlesPanel getBundlesPanel();
60
    
61
    public String getTranslation(String key);
62

    
63
    public void setSkipSelectPackagesWizardPage(boolean skip);
64
    
65
    public boolean getSkipSelectPackagesWizardPage();
66
}