Class DependencyTreeViewer


  • public final class DependencyTreeViewer
    extends java.lang.Object
    A dependency tree viewer utility. Prints out the dependency tree for a module.
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void print​(java.io.PrintWriter out, java.lang.String name, java.io.File... roots)
      Print the dependency tree for the given module with the given module root list.
      static void print​(java.io.PrintWriter out, ModuleIdentifier identifier, java.io.File... roots)
      Deprecated, for removal: This API element is subject to removal in a future version.
      • Methods inherited from class java.lang.Object

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

      • DependencyTreeViewer

        public DependencyTreeViewer()
    • Method Detail

      • print

        @Deprecated(forRemoval=true)
        public static void print​(java.io.PrintWriter out,
                                 ModuleIdentifier identifier,
                                 java.io.File... roots)
        Deprecated, for removal: This API element is subject to removal in a future version.
        Print the dependency tree for the given module with the given module root list.
        Parameters:
        out - the output stream to use
        identifier - the identifier of the module to examine
        roots - the module roots to search
      • print

        public static void print​(java.io.PrintWriter out,
                                 java.lang.String name,
                                 java.io.File... roots)
        Print the dependency tree for the given module with the given module root list.
        Parameters:
        out - the output stream to use
        name - the name of the module to examine
        roots - the module roots to search