Interface PatcherErrorHandler
-
- All Known Implementing Classes:
PatcherErrorHandlerBase,StrictPatcherErrorHandler
public interface PatcherErrorHandler- Author:
- Eugene Petrenko Created: 28.04.2009 17:49:46
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDirectoryFailed(File file)voidchangeBinaryFailed(File file, IOException e)voidchangeTextFailed(File file, IOException e)voidchmodFailed(File file)voiddeleteFailed(File file)voidfailedToAccessFile(File file)voidfailedToCreateOrFindParentDirectory(File file)voidrenameFileFailed(File fromFile, File toFile)voidrenameFileFailedNoSourceFile(File file)voidsetLastModifiedFailed(File file, long timeStamp)voidsetReadonlyAttributeFailed(File file)
-
-
-
Method Detail
-
addDirectoryFailed
void addDirectoryFailed(@NotNull File file) throws PatchException- Throws:
PatchException
-
deleteFailed
void deleteFailed(@NotNull File file) throws PatchException- Throws:
PatchException
-
renameFileFailed
void renameFileFailed(@NotNull File fromFile, @NotNull File toFile) throws PatchException- Throws:
PatchException
-
renameFileFailedNoSourceFile
void renameFileFailedNoSourceFile(@NotNull File file) throws PatchException- Throws:
PatchException
-
chmodFailed
void chmodFailed(@NotNull File file) throws PatchException- Throws:
PatchException
-
setLastModifiedFailed
void setLastModifiedFailed(@NotNull File file, long timeStamp) throws PatchException- Throws:
PatchException
-
setReadonlyAttributeFailed
void setReadonlyAttributeFailed(@NotNull File file) throws PatchException- Throws:
PatchException
-
changeBinaryFailed
void changeBinaryFailed(@NotNull File file, @NotNull IOException e) throws PatchException- Throws:
PatchException
-
changeTextFailed
void changeTextFailed(@NotNull File file, @NotNull IOException e) throws PatchException- Throws:
PatchException
-
failedToAccessFile
void failedToAccessFile(@NotNull File file) throws PatchException- Throws:
PatchException
-
failedToCreateOrFindParentDirectory
void failedToCreateOrFindParentDirectory(@NotNull File file) throws PatchException- Throws:
PatchException
-
-