Package org.rendersnake.test

Source Code of org.rendersnake.test.Dump

package org.rendersnake.test;

import java.io.IOException;

import org.rendersnake.HtmlCanvas;

public class Dump {
    public static void main(String[] args) throws IOException {
        HtmlCanvas html = new HtmlCanvas();
        html.render(HomePage.INSTANCE);
        System.out.println(html.toHtml());
    }
}
TOP

Related Classes of org.rendersnake.test.Dump

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.