org.eclipse.jgit.lib
Class ForceModified

java.lang.Object
  extended by org.eclipse.jgit.lib.ForceModified
All Implemented Interfaces:
TreeVisitor

public class ForceModified
extends java.lang.Object
implements TreeVisitor

Visitor for marking all nodes of a tree as modified.


Constructor Summary
ForceModified()
           
 
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.
 void visitFile(FileTreeEntry f)
          Visit to a blob.
 void visitGitlink(GitlinkTreeEntry s)
          Visit to a gitlink.
 void visitSymlink(SymlinkTreeEntry s)
          Visit to a symlink.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ForceModified

public ForceModified()
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

visitFile

public void visitFile(FileTreeEntry f)
               throws java.io.IOException
Description copied from interface: TreeVisitor
Visit to a blob.

Specified by:
visitFile in interface TreeVisitor
Parameters:
f - Blob
Throws:
java.io.IOException

visitSymlink

public void visitSymlink(SymlinkTreeEntry s)
                  throws java.io.IOException
Description copied from interface: TreeVisitor
Visit to a symlink.

Specified by:
visitSymlink in interface TreeVisitor
Parameters:
s - Symlink entry
Throws:
java.io.IOException

visitGitlink

public void visitGitlink(GitlinkTreeEntry s)
                  throws java.io.IOException
Description copied from interface: TreeVisitor
Visit to a gitlink.

Specified by:
visitGitlink in interface TreeVisitor
Parameters:
s - Gitlink entry
Throws:
java.io.IOException