Make a class graph from all classes in the default package, including all non-static fields and non-static non-void no-argument methods.
Make a class graph from all classes in the default package, including all non-static fields and non-static non-void no-argument methods.
public ClassGraph();
Make a class graph with just the classes and edges in
cgreachable by following
s.
public ClassGraph(ClassGraph,Strategy);
Make a class graph with just the classes and edges in
cgreachable by following strategy
s.
public ClassGraph(ClassGraph,string);
Make a class graph with just the classes and edges in
traversal.
public ClassGraph(Traversal);
Make a class graph from all classes in the package named
pkg. If
fis true, include all non-static fields; if
mis true, include all non-static non-void no-argument methods. These settings will apply by default for all classes added to the class graph in the future.
public ClassGraph(Assembly,bool,bool);