Class DefaultJspCompilerAdapter

java.lang.Object
org.apache.tools.ant.taskdefs.optional.jsp.compilers.DefaultJspCompilerAdapter
All Implemented Interfaces:
JspCompilerAdapter
Direct Known Subclasses:
JasperC

public abstract class DefaultJspCompilerAdapter extends Object implements JspCompilerAdapter
This is the default implementation for the JspCompilerAdapter interface. This is currently very light on the ground since only one compiler type is supported.
  • Field Details

    • owner

      protected JspC owner
      our owner
  • Constructor Details

    • DefaultJspCompilerAdapter

      public DefaultJspCompilerAdapter()
  • Method Details

    • logAndAddFilesToCompile

      protected void logAndAddFilesToCompile(JspC jspc, Vector<String> compileList, CommandlineJava cmd)
      Logs the compilation parameters, adds the files to compile and logs the "niceSourceList"
      Parameters:
      jspc - the compiler task for logging
      compileList - the list of files to compile
      cmd - the command line used
    • setJspc

      public void setJspc(JspC owner)
      set the owner
      Specified by:
      setJspc in interface JspCompilerAdapter
      Parameters:
      owner - the owner JspC compiler
    • getJspc

      public JspC getJspc()
      get the owner
      Returns:
      the owner; should never be null
    • addArg

      protected void addArg(CommandlineJava cmd, String argument)
      add a single argument to the argument list, if the value isn't null
      Parameters:
      cmd - the command line
      argument - The argument
    • addArg

      protected void addArg(CommandlineJava cmd, String argument, String value)
      add an argument tuple to the argument list, if the value isn't null
      Parameters:
      cmd - the command line
      argument - The argument
      value - the parameter
    • addArg

      protected void addArg(CommandlineJava cmd, String argument, File file)
      add an argument tuple to the arg list, if the file parameter isn't null
      Parameters:
      cmd - the command line
      argument - The argument
      file - the parameter
    • implementsOwnDependencyChecking

      public boolean implementsOwnDependencyChecking()
      ask if compiler can sort out its own dependencies
      Specified by:
      implementsOwnDependencyChecking in interface JspCompilerAdapter
      Returns:
      true if the compiler wants to do its own depends
    • getProject

      public Project getProject()
      get our project
      Returns:
      owner project data