16 lines
706 B
Java
16 lines
706 B
Java
package javax.baja.platform;
|
|
|
|
import javax.baja.file.BIFile;
|
|
import javax.baja.platform.install.InstallationSummary;
|
|
import javax.baja.platform.install.PlatformPart;
|
|
|
|
public interface InstallManager {
|
|
InstallationSummary checkInstall(InstallOperation installOperation, IPlatformOperationListener iPlatformOperationListener) throws Exception;
|
|
|
|
PlatformPart[] getPlatformParts(IPlatformOperationListener iPlatformOperationListener) throws Exception;
|
|
|
|
void install(InstallOperation installOperation, IPlatformOperationListener iPlatformOperationListener) throws Exception;
|
|
|
|
void registerInstallableFile(BIFile bIFile, IPlatformOperationListener iPlatformOperationListener) throws Exception;
|
|
}
|