Revision: 25414
          http://sourceforge.net/p/bibdesk/svn/25414
Author:   hofman
Date:     2021-01-16 16:55:12 +0000 (Sat, 16 Jan 2021)
Log Message:
-----------
fix documentation

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVOperation.h

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVOperation.h
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVOperation.h     2021-01-16 
16:12:22 UTC (rev 25413)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVOperation.h     2021-01-16 
16:55:12 UTC (rev 25414)
@@ -78,9 +78,10 @@
 
 /** Hash value.
  
- Subclasses should override hash and isEqual: for correct coalescing 
semantics.  Default implementation uses pointer equality, so returns the 
object's address cast to an NSUInteger as hash.
+ Subclasses may override hash and isEqual: for correct coalescing semantics.  
Default implementation uses pointer equality, so returns the object's address 
cast to an NSUInteger as hash.
  @return The hash value. */
 - (NSUInteger)hash;
+
 /** Equality test.
  
  Subclasses may override hash and isEqual: for correct coalescing semantics.  
Default implementation uses pointer equality.
@@ -88,26 +89,18 @@
 - (BOOL)isEqual:(id)object;
 
 /** Sets the FVOperationQueue.
- 
  @param aQueue The queue that will execute this task. */
 - (void)setQueue:(id)aQueue;
 
 /** The queue that will execute the task.
- 
  @return An instance of FVOperationQueue or nil. */
 - (id)queue;
 
 /** Priority of this task.
- 
- Required for subclassers.  Do not call super. */
-
-/** Priority of this task.
- 
  @return The operation's priority. */
 - (FVOperationQueuePriority)queuePriority;
 
 /** Set priority of this task.
- 
  @param queuePriority An integral value from the 
FVOperation.h::FVOperationQueuePriority enum. */
 - (void)setQueuePriority:(FVOperationQueuePriority)queuePriority;
 
@@ -116,7 +109,6 @@
 - (void)cancel;
 
 /** Cancellation status of this task.
- 
  @return YES if FVOperation::cancel was called previously. */
 - (BOOL)isCancelled;
 
@@ -139,7 +131,7 @@
 
 /** Check to see if the operation is concurrent.
  
- This method returns NO by default for consistency with NSOperation.  
Subclasses may override this.
+ This method returns YES by default.  Subclasses may override this.
  @return YES if it detaches a new thread in FVOperation::start, NO otherwise. 
*/
 - (BOOL)isConcurrent;
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to