Package org.apache.derby.impl.tools.planexporter

Examples of org.apache.derby.impl.tools.planexporter.CreateHTMLFile


     * @param def whether the default xsl or not
     * @throws Exception
     */
    private static void generateHTML(String arg, String path,
            String style, boolean def) throws Exception{
        CreateHTMLFile htmlFile = new CreateHTMLFile();

        if(arg.toUpperCase().endsWith(".XML")){
            htmlFile.getHTML(arg, style, path, def);
        }
        else{
            htmlFile.getHTML(arg.concat(".xml"), style, path, def);
        }
    }
View Full Code Here


     * @param def whether the default xsl or not
     * @throws Exception
     */
    private static void generateHTML(String arg, String path,
            String style, boolean def) throws Exception{
        CreateHTMLFile htmlFile = new CreateHTMLFile();

        if(arg.toUpperCase().endsWith(".XML")){
            htmlFile.getHTML(arg, style, path, def);
        }
        else{
            htmlFile.getHTML(arg.concat(".xml"), style, path, def);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.derby.impl.tools.planexporter.CreateHTMLFile

Copyright © 2018 www.massapicom. 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.