Revision 43126 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.installer/org.gvsig.installer.swing/org.gvsig.installer.swing.api/src/main/java/org/gvsig/installer/swing/api/creation/MakePluginPackageWizard.java

View differences:

MakePluginPackageWizard.java
21 21
 * For any additional information, do not hesitate to contact us
22 22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2010 {Prodevelop}   {Task}
27
 */
28 24

  
29 25
package org.gvsig.installer.swing.api.creation;
30 26

  
31
import java.io.File;
27
import org.gvsig.installer.swing.api.wizard.InstallerWizardPanel;
32 28

  
33
import org.gvsig.installer.lib.api.PackageInfo;
34
import org.gvsig.installer.swing.api.wizard.AbstractInstallerWizard;
35 29

  
36
/**
37
 * <p>
38
 * Wizard that is used to create a bundle with a package of type plugin from a
39
 * gvSIG directory. This class receive a gvSIG root directory and allows to the
40
 * user to select the plugin that is used to create the bundle.
41
 * </p>
42
 * <p>
43
 * The user can also set some plugin properties, like the version of the
44
 * installer, the build number... The definition of all these properties can be
45
 * found in {@link PackageInfo}.
46
 * </p>
47
 * <p>
48
 * All the classes that inherit if this abstract class have to have a
49
 * constructor with an argument of type {@link File}, that is the application
50
 * directory.
51
 * </p>
52
 * 
53
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
54
 */
55
public abstract class MakePluginPackageWizard extends AbstractInstallerWizard {
30
public interface MakePluginPackageWizard extends InstallerWizardPanel {
56 31

  
57
	private static final long serialVersionUID = 6387360455696226183L;
58

  
59
	/**
60
	 * Constructor
61
	 * 
62
	 * @see AbstractInstallerWizard#AbstractInstallerWizard(File, File)
63
	 */
64
	public MakePluginPackageWizard(File applicationFolder, File installFolder) {
65
		super(applicationFolder, installFolder);
66
	}
67 32
}

Also available in: Unified diff