Uses of Class
org.eclipse.jgit.patch.FormatError
-
Packages that use FormatError Package Description org.eclipse.jgit.api.errors Exceptions thrown by API commands.org.eclipse.jgit.patch Patch file parser and data structure. -
-
Uses of FormatError in org.eclipse.jgit.api.errors
Fields in org.eclipse.jgit.api.errors with type parameters of type FormatError Modifier and Type Field Description private java.util.List<FormatError>
PatchFormatException. errors
Methods in org.eclipse.jgit.api.errors that return types with arguments of type FormatError Modifier and Type Method Description java.util.List<FormatError>
PatchFormatException. getErrors()
Get list of errorsConstructor parameters in org.eclipse.jgit.api.errors with type arguments of type FormatError Constructor Description PatchFormatException(java.util.List<FormatError> errors)
Constructor for PatchFormatException -
Uses of FormatError in org.eclipse.jgit.patch
Fields in org.eclipse.jgit.patch with type parameters of type FormatError Modifier and Type Field Description private java.util.List<FormatError>
Patch. errors
Formatting errors, if any were identified.Methods in org.eclipse.jgit.patch that return types with arguments of type FormatError Modifier and Type Method Description java.util.List<FormatError>
Patch. getErrors()
Get collection of formatting errors.Methods in org.eclipse.jgit.patch with parameters of type FormatError Modifier and Type Method Description void
Patch. addError(FormatError err)
Add a formatting error to this patch script.
-