|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.eclipse.jgit.patch.Patch
public class Patch
A parsed collection of FileHeaders from a unified diff patch file
| Constructor Summary | |
|---|---|
Patch()
Create an empty patch. |
|
| Method Summary | |
|---|---|
void |
addError(FormatError err)
Add a formatting error to this patch script. |
void |
addFile(FileHeader fh)
Add a single file to this patch. |
java.util.List<FormatError> |
getErrors()
|
java.util.List<? extends FileHeader> |
getFiles()
|
void |
parse(byte[] buf,
int ptr,
int end)
Parse a patch stored in a byte[]. |
void |
parse(java.io.InputStream is)
Parse a patch received from an InputStream. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Patch()
| Method Detail |
|---|
public void addFile(FileHeader fh)
Typically files should be added by parsing the text through one of this class's parse methods.
fh - the header of the file.public java.util.List<? extends FileHeader> getFiles()
public void addError(FormatError err)
err - the error description.public java.util.List<FormatError> getErrors()
public void parse(java.io.InputStream is)
throws java.io.IOException
Multiple parse calls on the same instance will concatenate the patch data, but each parse input must start with a valid file header (don't split a single file across parse calls).
is - the stream to read the patch data from. The stream is read
until EOF is reached.
java.io.IOException - there was an error reading from the input stream.
public void parse(byte[] buf,
int ptr,
int end)
Multiple parse calls on the same instance will concatenate the patch data, but each parse input must start with a valid file header (don't split a single file across parse calls).
buf - the buffer to parse.ptr - starting position to parse from.end - 1 past the last position to end parsing. The total length to
be parsed is end - ptr.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||