Add a bit of information about handler callback methods to comments/docs.

This commit is contained in:
rfm 2024-11-03 12:00:51 +00:00
parent 962c169705
commit e960277581
2 changed files with 15 additions and 3 deletions

View file

@ -1323,10 +1323,17 @@ static gs_mutex_t classLock = GS_MUTEX_INIT_STATIC;
/**
* Copies the file or directory at source to destination, using a
* handler object which should respond to
* handler object which may respond to
* [NSObject(NSFileManagerHandler)-fileManager:willProcessPath:] and
* [NSObject(NSFileManagerHandler)-fileManager:shouldProceedAfterError:]
* messages.<br />
* If the handler responds to the first message, it is used to inform the
* handler when an item is about to be copied. If the handler responds
* to the second message, it is used to ask the handler whether to
* continue with the copy after an error (when there is no handler the
* processing stops at the point when an error occurs).<br />
* Symbolic links are copied themselved rather than causing the items
* they link to be copied.<br />
* Will not copy to a destination which already exists.
*/
- (BOOL) copyPath: (NSString*)source
@ -1460,7 +1467,12 @@ static gs_mutex_t classLock = GS_MUTEX_INIT_STATIC;
* handler object which should respond to
* [NSObject(NSFileManagerHandler)-fileManager:willProcessPath:] and
* [NSObject(NSFileManagerHandler)-fileManager:shouldProceedAfterError:]
* messages.
* messages.<br />
* If the handler responds to the first message, it is used to inform the
* handler when an item is about to be moved. If the handler responds
* to the second message, it is used to ask the handler whether to
* continue with the move after an error (when there is no handler the
* processing stops at the point when an error occurs).<br />
* Will not move to a destination which already exists.<br />
*/
- (BOOL) movePath: (NSString*)source

View file

@ -9,7 +9,7 @@ MAJOR_VERSION=1
MINOR_VERSION=30
SUBMINOR_VERSION=0
# numeric value should match above
VERSION_NUMBER=129.0
VERSION_NUMBER=130.0
GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION}
VERSION=${GNUSTEP_BASE_VERSION}