Class CodeGenUtil


  • public class CodeGenUtil
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      CodeGenUtil()  
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static boolean externalCompile​(java.util.List<java.io.File> srcFiles, java.io.File outdir, java.io.File[] cp, boolean debug)
      Deprecated. 
      static boolean externalCompile​(java.util.List<java.io.File> srcFiles, java.io.File outdir, java.io.File[] cp, boolean debug, java.lang.String javacPath, java.lang.String memStart, java.lang.String memMax, boolean quiet, boolean verbose)  
      static boolean externalCompile​(java.util.List<java.io.File> srcFiles, java.io.File outdir, java.io.File[] cp, boolean debug, java.lang.String javacPath, java.lang.String genver, java.lang.String memStart, java.lang.String memMax, boolean quiet, boolean verbose)
      Invokes javac on the generated source files in order to turn them into binary files in the output directory.
      static java.net.URI resolve​(java.net.URI base, java.net.URI child)  
      static java.io.File[] systemClasspath()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CodeGenUtil

        public CodeGenUtil()
    • Method Detail

      • resolve

        public static java.net.URI resolve​(java.net.URI base,
                                           java.net.URI child)
      • externalCompile

        public static boolean externalCompile​(java.util.List<java.io.File> srcFiles,
                                              java.io.File outdir,
                                              java.io.File[] cp,
                                              boolean debug)
        Deprecated.
        Invokes javac on the generated source files in order to turn them into binary files in the output directory. This will return a list of GenFiles for all of the classes produced or null if an error occurred.
      • externalCompile

        public static boolean externalCompile​(java.util.List<java.io.File> srcFiles,
                                              java.io.File outdir,
                                              java.io.File[] cp,
                                              boolean debug,
                                              java.lang.String javacPath,
                                              java.lang.String memStart,
                                              java.lang.String memMax,
                                              boolean quiet,
                                              boolean verbose)
      • externalCompile

        public static boolean externalCompile​(java.util.List<java.io.File> srcFiles,
                                              java.io.File outdir,
                                              java.io.File[] cp,
                                              boolean debug,
                                              java.lang.String javacPath,
                                              java.lang.String genver,
                                              java.lang.String memStart,
                                              java.lang.String memMax,
                                              boolean quiet,
                                              boolean verbose)
        Invokes javac on the generated source files in order to turn them into binary files in the output directory. This will return a list of GenFiles for all of the classes produced or null if an error occurred.
      • systemClasspath

        public static java.io.File[] systemClasspath()