/* * [JPrepConfiguration.java] * * Summary: Stripped down Configuration for use with JPrep. * * Copyright: (c) 2016-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 2016-06-12 initial version. */ package com.mindprod.htmlmacros.support; import java.util.List; /** * Stripped down Configuration for use with JPrep. *

* You need to write something similar to ConfigurationForMindprod that implements this Configuration . * * @author Roedy Green, Canadian Mind Products * @version 1.0 2016-06-12 initial version * @since 2016-06-12 */ public interface JPrepConfiguration { /** * get snippet dirs * * @return array of Directories containing snippet dirs, not the snippet dirs themselves. * e.g applet, without E:/mindprod or /snippet . Use / not \. */ List getDirsContainingSnippets(); // /method /** * /** * get E:/mindprod * * @return where the website is stored locally on author's machines. Use / for separator. Usually E: no trailing /. */ String getLocalWebrootWithSlashes(); // /method }