2026-03-17 13:31:18 -07:00

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;
}