Uses of Class
org.eclipse.jgit.diff.RawText
-
Packages that use RawText Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.pgm.debug -
-
Uses of RawText in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type RawText Modifier and Type Method Description private void
ApplyCommand. applyText(Repository repository, java.lang.String path, RawText rt, java.io.File f, FileHeader fh, DirCacheCheckout.CheckoutMetadata checkOut)
-
Uses of RawText in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as RawText Modifier and Type Field Description private RawText
BlameResult. resultContents
(package private) RawText
Candidate. sourceText
Complete contents of the file inCandidate.sourceCommit
.Methods in org.eclipse.jgit.blame that return RawText Modifier and Type Method Description RawText
BlameGenerator. getResultContents()
Get complete file contents of the result file blame is annotatingRawText
BlameResult. getResultContents()
Get result contentsRawText
BlameGenerator. getSourceContents()
Get complete contents of the source file blamed for the current output regionMethods in org.eclipse.jgit.blame with parameters of type RawText Modifier and Type Method Description BlameGenerator
BlameGenerator. push(java.lang.String description, RawText contents)
Push a candidate blob onto the generator's traversal stack.Constructors in org.eclipse.jgit.blame with parameters of type RawText Constructor Description BlameResult(BlameGenerator bg, java.lang.String path, RawText text)
-
Uses of RawText in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as RawText Modifier and Type Field Description (package private) RawText
DiffFormatter.FormatResult. a
(package private) RawText
DiffFormatter.FormatResult. b
static RawText
RawText. EMPTY_TEXT
A RawText of length 0Methods in org.eclipse.jgit.diff that return RawText Modifier and Type Method Description static RawText
RawText. load(ObjectLoader ldr, int threshold)
Read a blob object into RawText, or throw BinaryBlobException if the blob is binary.private RawText
DiffFormatter. open(DiffEntry.Side side, DiffEntry entry)
Methods in org.eclipse.jgit.diff with parameters of type RawText Modifier and Type Method Description private EditList
DiffFormatter. diff(RawText a, RawText b)
void
DiffFormatter. format(EditList edits, RawText a, RawText b)
Formats a list of edits in unified diff formatvoid
DiffFormatter. format(FileHeader head, RawText a, RawText b)
Format a patch script, reusing a previously parsed FileHeader.int
RawTextComparator. hash(RawText seq, int lno)
private static boolean
DiffFormatter. isEndOfLineMissing(RawText text, int line)
Edit
RawTextComparator. reduceCommonStartEnd(RawText a, RawText b, Edit e)
Modify the edit to remove common leading and trailing items.protected void
DiffFormatter. writeAddedLine(RawText text, int line)
Output an added line.protected void
DiffFormatter. writeContextLine(RawText text, int line)
Output a line of context (unmodified line).protected void
DiffFormatter. writeLine(char prefix, RawText text, int cur)
Write a standard patch script line.protected void
DiffFormatter. writeRemovedLine(RawText text, int line)
Output a removed line -
Uses of RawText in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge with type parameters of type RawText Modifier and Type Field Description private MergeResult<RawText>
MergeFormatterPass. res
Methods in org.eclipse.jgit.merge that return RawText Modifier and Type Method Description private RawText
ResolveMerger. getRawText(ObjectId id, Attributes attributes)
Methods in org.eclipse.jgit.merge that return types with arguments of type RawText Modifier and Type Method Description private MergeResult<RawText>
ResolveMerger. contentMerge(CanonicalTreeParser base, CanonicalTreeParser ours, CanonicalTreeParser theirs, Attributes[] attributes, ContentMergeStrategy strategy)
Does the content merge.Methods in org.eclipse.jgit.merge with parameters of type RawText Modifier and Type Method Description private void
MergeFormatterPass. writeLine(RawText seq, int i)
Method parameters in org.eclipse.jgit.merge with type arguments of type RawText Modifier and Type Method Description private TemporaryBuffer
ResolveMerger. doMerge(MergeResult<RawText> result)
void
MergeFormatter. formatMerge(java.io.OutputStream out, MergeResult<RawText> res, java.util.List<java.lang.String> seqName, java.lang.String charsetName)
Deprecated.void
MergeFormatter. formatMerge(java.io.OutputStream out, MergeResult<RawText> res, java.util.List<java.lang.String> seqName, java.nio.charset.Charset charset)
Formats the results of a merge ofRawText
objects in a Git conformant way.private void
ResolveMerger. updateIndex(CanonicalTreeParser base, CanonicalTreeParser ours, CanonicalTreeParser theirs, MergeResult<RawText> result, Attributes attributes)
Updates the index after a content merge has happened.Constructor parameters in org.eclipse.jgit.merge with type arguments of type RawText Constructor Description MergeFormatterPass(java.io.OutputStream out, MergeResult<RawText> res, java.util.List<java.lang.String> seqName, java.nio.charset.Charset charset)
-
Uses of RawText in org.eclipse.jgit.pgm.debug
Fields in org.eclipse.jgit.pgm.debug declared as RawText Modifier and Type Field Description private RawText
TextHashFunctions.Line. txt
Methods in org.eclipse.jgit.pgm.debug with parameters of type RawText Modifier and Type Method Description boolean
TextHashFunctions.Hash. equals(RawText a, int ai, RawText b, int bi)
private void
DiffAlgorithms. testOne(DiffAlgorithms.Test test, RawText a, RawText b)
private static void
TextHashFunctions. testOne(TextHashFunctions.Function fun, RawText txt, int[] elements, int cnt)
Constructors in org.eclipse.jgit.pgm.debug with parameters of type RawText Constructor Description Line(RawText txt, int pos)
-