Uses of Class
org.eclipse.jgit.lib.Tree
-
Packages that use Tree Package Description org.eclipse.jgit.lib Core API for repository, config, refs, object database. -
-
Uses of Tree in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return Tree Modifier and Type Method Description Tree
Tree. addTree(byte[] s, int offset)
Deprecated.Adds a new or existing Tree with the specified name to this tree.Tree
Tree. addTree(String name)
Deprecated.Adds a new or existing Tree with the specified name to this tree.Tree
TreeEntry. getParent()
Deprecated.Constructors in org.eclipse.jgit.lib with parameters of type Tree Constructor Description FileTreeEntry(Tree parent, ObjectId id, byte[] nameUTF8, boolean execute)
Deprecated.Constructor for a File (blob) object.GitlinkTreeEntry(Tree parent, ObjectId id, byte[] nameUTF8)
Deprecated.Construct aGitlinkTreeEntry
with the specified name and SHA-1 in the specified parentSymlinkTreeEntry(Tree parent, ObjectId id, byte[] nameUTF8)
Deprecated.Construct aSymlinkTreeEntry
with the specified name and SHA-1 in the specified parentTree(Tree parent, byte[] nameUTF8)
Deprecated.Construct a new Tree under another TreeTree(Tree parent, ObjectId id, byte[] nameUTF8)
Deprecated.Construct a Tree with a known SHA-1 under another tree.TreeEntry(Tree myParent, ObjectId myId, byte[] myNameUTF8)
Deprecated.Construct a named tree entry.
-