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 40560 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40560 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 43126 jjdelcerro
 * 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 40560 jjdelcerro
 *
11 43126 jjdelcerro
 * 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 40560 jjdelcerro
 *
16 43126 jjdelcerro
 * 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 40560 jjdelcerro
 *
20 43126 jjdelcerro
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22 40435 jjdelcerro
 */
23 43126 jjdelcerro
package org.gvsig.installer.swing.impl.execution;
24 40435 jjdelcerro
25
import java.util.List;
26 43126 jjdelcerro
import org.gvsig.gui.beans.wizard.WizardPanel;
27 40435 jjdelcerro
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 43126 jjdelcerro
import org.gvsig.installer.swing.api.execution.InstallWizardPanel;
32
import org.gvsig.installer.swing.impl.execution.panel.SelectBundlesPanel;
33 40435 jjdelcerro
34 43126 jjdelcerro
public interface InstallWizardPanel_ext
35
        extends
36
        InstallWizardPanel, WizardPanel {
37 40435 jjdelcerro
38 43126 jjdelcerro
    /**
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 40435 jjdelcerro
49 43126 jjdelcerro
    /**
50
     * @return the installerExecutionService
51
     */
52
    public InstallPackageService getInstallerExecutionService();
53 40435 jjdelcerro
54 43126 jjdelcerro
    /**
55
     * @return the installersToInstall
56
     */
57
    public List<PackageInfo> getPackagesToInstall();
58 40435 jjdelcerro
59 43126 jjdelcerro
    public SelectBundlesPanel getBundlesPanel();
60
61
    public String getTranslation(String key);
62 40435 jjdelcerro
63 43126 jjdelcerro
    public void setSkipSelectPackagesWizardPage(boolean skip);
64
65
    public boolean getSkipSelectPackagesWizardPage();
66 40435 jjdelcerro
}