Package

Source Code of marcel

import gui.Gui;

import java.applet.*;

public class marcel extends Applet{
    String open;
    String boot;
    public static void main(String[] args) {
        new Gui();
    }
   
    public void init() {
        open = this.getParameter("FILE");
        boot = this.getParameter("BOOT");
        Gui applet = new Gui(this.getCodeBase(), true);
        if (open!=null)
            applet.setK7FromUrl(this.getCodeBase() + open);
        applet.machine.setBoot(boot);
    }
}
TOP

Related Classes of marcel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.