Package org.jboss.modules
Class DependencyTreeViewer
- java.lang.Object
-
- org.jboss.modules.DependencyTreeViewer
-
public final class DependencyTreeViewer extends java.lang.Object
A dependency tree viewer utility. Prints out the dependency tree for a module.
-
-
Constructor Summary
Constructors Constructor Description DependencyTreeViewer()
-
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.Useprint(PrintWriter, String, File...)
instead.
-
-
-
Method Detail
-
print
@Deprecated public static void print(java.io.PrintWriter out, ModuleIdentifier identifier, java.io.File... roots)
Deprecated.Useprint(PrintWriter, String, File...)
instead.Print the dependency tree for the given module with the given module root list.- Parameters:
out
- the output stream to useidentifier
- the identifier of the module to examineroots
- 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 usename
- the name of the module to examineroots
- the module roots to search
-
-