package de.webman.wminstaller.install;
import java.util.*;
import de.webman.wminstaller.app.*;
public class JdkModInst
implements ModuleInstaller
{
public String getName() {
return "Java runtime environment (Jdk)";
}
public int pre(HashMap dict)
throws InstallationException
{
return INCLUDE;
}
public void install(HashMap dict)
throws InstallationException
{
// TODO
}
public void configure(HashMap dict)
throws InstallationException
{
// TODO ??
}
public void post(HashMap dict)
throws InstallationException
{
// nop
}
}
|