Uses of Class
org.eclipse.jgit.diff.RawText
-
Packages that use RawText Package Description 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. -
-
Uses of RawText in org.eclipse.jgit.blame
Methods in org.eclipse.jgit.blame that return RawText Modifier and Type Method Description RawTextBlameGenerator. getResultContents()Get complete file contents of the result file blame is annotatingRawTextBlameResult. getResultContents()Get result contentsRawTextBlameGenerator. 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 BlameGeneratorBlameGenerator. push(String description, RawText contents)Push a candidate blob onto the generator's traversal stack. -
Uses of RawText in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as RawText Modifier and Type Field Description static RawTextRawText. EMPTY_TEXTA RawText of length 0Methods in org.eclipse.jgit.diff that return RawText Modifier and Type Method Description static RawTextRawText. load(ObjectLoader ldr, int threshold)Read a blob object into RawText, or throw BinaryBlobException if the blob is binary.Methods in org.eclipse.jgit.diff with parameters of type RawText Modifier and Type Method Description voidDiffFormatter. format(EditList edits, RawText a, RawText b)Formats a list of edits in unified diff formatvoidDiffFormatter. format(FileHeader head, RawText a, RawText b)Format a patch script, reusing a previously parsed FileHeader.intRawTextComparator. hash(RawText seq, int lno)EditRawTextComparator. reduceCommonStartEnd(RawText a, RawText b, Edit e)Modify the edit to remove common leading and trailing items.protected voidDiffFormatter. writeAddedLine(RawText text, int line)Output an added line.protected voidDiffFormatter. writeContextLine(RawText text, int line)Output a line of context (unmodified line).protected voidDiffFormatter. writeLine(char prefix, RawText text, int cur)Write a standard patch script line.protected voidDiffFormatter. writeRemovedLine(RawText text, int line)Output a removed line -
Uses of RawText in org.eclipse.jgit.merge
Method parameters in org.eclipse.jgit.merge with type arguments of type RawText Modifier and Type Method Description voidMergeFormatter. formatMerge(OutputStream out, MergeResult<RawText> res, List<String> seqName, String charsetName)Deprecated.voidMergeFormatter. formatMerge(OutputStream out, MergeResult<RawText> res, List<String> seqName, Charset charset)Formats the results of a merge ofRawTextobjects in a Git conformant way.
-