KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > wminstaller > install > JdkModInst


1 package de.webman.wminstaller.install;
2
3 import java.util.*;
4 import de.webman.wminstaller.app.*;
5
6
7 public class JdkModInst
8     implements ModuleInstaller
9 {
10     public String JavaDoc getName() {
11         return "Java runtime environment (Jdk)";
12     }
13     
14     public int pre(HashMap dict)
15         throws InstallationException
16     {
17         return INCLUDE;
18     }
19
20     public void install(HashMap dict)
21         throws InstallationException
22     {
23         // TODO
24
}
25     
26     
27     public void configure(HashMap dict)
28         throws InstallationException
29     {
30         // TODO ??
31
}
32
33     public void post(HashMap dict)
34         throws InstallationException
35     {
36         // nop
37
}
38 }
39
Popular Tags