JdkModInst.java :  » Content-Management-System » webman » de » webman » wminstaller » install » Java Open Source

Java Open Source » Content Management System » webman 
webman » de » webman » wminstaller » install » JdkModInst.java
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
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.