Here you can find the source of htmlFooter()
public static String htmlFooter()
//package com.java2s; //License from project: Open Source License public class Main { private static final String HTML_FOOTER = " </div>\n" + " \n" + " <div id=\"footer\">\n" + " Copyright (C) 2008-2009 <a href=\"http://www.intalio.com\">Intalio, Inc</a>\n" + " </div>\n" + " </div>\n" + " </body>\n" + "</html>"; public static String htmlFooter() { return HTML_FOOTER; }// w w w . j a v a 2 s . c om }