Package tilda.utils
Interface Graph.Visitor<T>
-
- All Known Implementing Classes:
Docs.DependencyPrinter
public static interface Graph.Visitor<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visitNode(int level, int FirstMiddleLast, T v, java.util.List<T> Path)
-
-
-
Method Detail
-
visitNode
void visitNode(int level, int FirstMiddleLast, T v, java.util.List<T> Path) throws java.lang.Exception
- Parameters:
level
- The level, starting at 0 that you are being asked to print.FirstMiddleLast
- 0 if First of level, -1 if middle of level, 1 if last of level.v
- The value of the nodePath
- The path of node values- Throws:
java.lang.Exception
-
-