Package

Source Code of Main

import dk.brics.jwig.WebSite;
import kickstart.HelloApp;

/**
* A minimal WebSite implementation that sets up a single web application
*/
public class Main extends WebSite {

    @Override
    public void init() {
        add(new HelloApp());
    }
}
TOP

Related Classes of Main

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.