include com.paolomatrascia.utils.*;
/** * This is the MainPage of the Paolo Matrascia's web site * * @author Paolo Matrascia * @version 1.0 * @date 2008/03/14 */ public class MainPage { static final public String homeSite = "PaoloMatrascia.com"; public MainPage() { System.out.println("Welcome to " + homeSite); } public void showProjects() { openPage("Projects"); } public HTMLStream showBlogs() { openPage("TheBlog","The M.P.", true); } }