Package htmlcompiler.model
Interface Command
-
public interface Command
-
-
Method Summary
Modifier and Type Method Description void
execute(java.io.File inputDir, FileType type, java.lang.String filename, java.io.PrintStream out)
static Command
newCommand(CommandType type, java.io.File inputDir)
static Command
newCompile(HtmlCompiler html)
static Command
newCompress(HtmlCompiler html)
static Command
newDiff()
static Command
newVerify()
-
-
-
Method Detail
-
execute
void execute(java.io.File inputDir, FileType type, java.lang.String filename, java.io.PrintStream out) throws java.lang.Exception
- Throws:
java.lang.Exception
-
newCommand
static Command newCommand(CommandType type, java.io.File inputDir) throws org.apache.maven.plugin.MojoFailureException, UnrecognizedCommand
- Throws:
org.apache.maven.plugin.MojoFailureException
UnrecognizedCommand
-
newVerify
static Command newVerify()
-
newDiff
static Command newDiff()
-
newCompress
static Command newCompress(HtmlCompiler html)
-
newCompile
static Command newCompile(HtmlCompiler html)
-
-