org.eclipse.jgit.lib
Class TreeVisitorWithCurrentDirectory

java.lang.Object
  extended by org.eclipse.jgit.lib.TreeVisitorWithCurrentDirectory
All Implemented Interfaces:
TreeVisitor
Direct Known Subclasses:
WriteTree

public abstract class TreeVisitorWithCurrentDirectory
extends java.lang.Object
implements TreeVisitor

Abstract TreeVisitor for visiting all files known by a Tree.


Method Summary
 void endVisitTree(Tree t)
          Visit to a tree node.
 void startVisitTree(Tree t)
          Visit to a tree node before child nodes are visited.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.eclipse.jgit.lib.TreeVisitor
visitFile, visitGitlink, visitSymlink
 

Method Detail

startVisitTree

public void startVisitTree(Tree t)
                    throws java.io.IOException
Description copied from interface: TreeVisitor
Visit to a tree node before child nodes are visited.

Specified by:
startVisitTree in interface TreeVisitor
Parameters:
t - Tree
Throws:
java.io.IOException

endVisitTree

public void endVisitTree(Tree t)
                  throws java.io.IOException
Description copied from interface: TreeVisitor
Visit to a tree node. after child nodes have been visited.

Specified by:
endVisitTree in interface TreeVisitor
Parameters:
t - Tree
Throws:
java.io.IOException