Package net.riccardocossu.autodoc.html

Examples of net.riccardocossu.autodoc.html.HtmlOutputPlugin


    PluginFactory factory = new PluginFactory();
    OutputPlugin op = factory.initOutputPlugin("HTML",
        "htmlOutputPlugin.properties");
    assertNotNull(op);
    assertTrue(op instanceof HtmlOutputPlugin);
    HtmlOutputPlugin html = (HtmlOutputPlugin) op;
    assertEquals("/html/templates", html.getBaseTemplatePath());
    assertEquals("/customCssFile.css", html.getCssFile());
    assertEquals("UTF-16", html.getOutputEncoding());
    assertEquals("customPackageTemplate.html",
        html.getPackageTemplateName());
    assertEquals("/custom/Css/Path", html.getCssPath());
  }
View Full Code Here

TOP

Related Classes of net.riccardocossu.autodoc.html.HtmlOutputPlugin

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.