Uses of Class
org.rococoa.cocoa.foundation.NSError

Packages that use NSError
org.rococoa.cocoa.appkit   
org.rococoa.cocoa.appkit.categories   
org.rococoa.cocoa.foundation   
org.rococoa.cocoa.foundation.categories   
org.rococoa.cocoa.foundation.protocols   
 

Uses of NSError in org.rococoa.cocoa.appkit
 

Methods in org.rococoa.cocoa.appkit that return NSError
abstract  NSError NSDocumentController.willPresentError(NSError error)
          Original signature : -(NSError*)willPresentError:(NSError*)
native declaration : NSDocumentController.h:162
abstract  NSError NSDocument.willPresentError(NSError error)
          Original signature : -(NSError*)willPresentError:(NSError*)
native declaration : NSDocument.h:440
 

Methods in org.rococoa.cocoa.appkit with parameters of type NSError
static NSAlert NSAlert.alertWithError(NSError error)
          Given an NSError, create an NSAlert that can be used to present the error to the user.
abstract  NSAlert NSAlert._class_.alertWithError(NSError error)
          Given an NSError, create an NSAlert that can be used to present the error to the user.
abstract  void NSDocumentController.presentError_modalForWindow_delegate_didPresentSelector_contextInfo(NSError error, NSWindow window, ObjCObject delegate, Selector didPresentSelector, Pointer contextInfo)
          Methods that are declared by NSResponder and also implemented by NSDocumentController, even though for historical reasons NSDocumentController is not a subclass of NSResponder.
abstract  void NSDocument.presentError_modalForWindow_delegate_didPresentSelector_contextInfo(NSError error, NSWindow window, ObjCObject delegate, Selector didPresentSelector, Pointer contextInfo)
          Methods that are declared by NSResponder and also implemented by NSDocument, even though for historical reasons NSDocument is not a subclass of NSResponder.
abstract  boolean NSDocumentController.presentError(NSError error)
          Original signature : -(BOOL)presentError:(NSError*)
native declaration : NSDocumentController.h:161
abstract  boolean NSDocument.presentError(NSError error)
          Original signature : -(BOOL)presentError:(NSError*)
native declaration : NSDocument.h:439
abstract  NSError NSDocumentController.willPresentError(NSError error)
          Original signature : -(NSError*)willPresentError:(NSError*)
native declaration : NSDocumentController.h:162
abstract  NSError NSDocument.willPresentError(NSError error)
          Original signature : -(NSError*)willPresentError:(NSError*)
native declaration : NSDocument.h:440
 

Uses of NSError in org.rococoa.cocoa.appkit.categories
 

Methods in org.rococoa.cocoa.appkit.categories that return NSError
 NSError NSErrorPresentation.willPresentError(NSError error)
          Given that the receiver is about to present an error (perhaps by just forwarding it to the next responder), return the error that should actually be presented.
 

Methods in org.rococoa.cocoa.appkit.categories with parameters of type NSError
 void NSErrorPresentation.presentError_modalForWindow_delegate_didPresentSelector_contextInfo(NSError error, NSWindow window, ObjCObject delegate, Selector didPresentSelector, Pointer contextInfo)
          Present an error alert to the user, as a document-modal panel.
 boolean NSErrorPresentation.presentError(NSError error)
          Present an error alert to the user, as an application-modal panel, and return YES if error recovery was done, NO otherwise.
 NSError NSErrorPresentation.willPresentError(NSError error)
          Given that the receiver is about to present an error (perhaps by just forwarding it to the next responder), return the error that should actually be presented.
 

Uses of NSError in org.rococoa.cocoa.foundation
 

Methods in org.rococoa.cocoa.foundation that return NSError
static NSError NSError.alloc()
           
abstract  NSError NSError._class_.alloc()
           
static NSError NSError.createWithDomain_code_userInfo(NSString domain, NSInteger code, NSDictionary dict)
          Factory method
abstract  NSError NSURLAuthenticationChallenge.error()
           
static NSError NSError.errorWithDomain_code_userInfo(NSString domain, NSInteger code, NSDictionary dict)
          Original signature : +(id)errorWithDomain:(NSString*) code:(NSInteger) userInfo:(NSDictionary*)
native declaration : NSError.h:50
abstract  NSError NSError._class_.errorWithDomain_code_userInfo(NSString domain, NSInteger code, NSDictionary dict)
          Original signature : +(id)errorWithDomain:(NSString*) code:(NSInteger) userInfo:(NSDictionary*)
native declaration : NSError.h:50
abstract  NSError NSError.initWithDomain_code_userInfo(NSString domain, NSInteger code, NSDictionary dict)
          Designated initializer.
static NSError NSError.new_()
           
abstract  NSError NSError._class_.new_()
           
abstract  NSError NSXMLParser.parserError()
          can be called after a parse is over to determine parser state.
abstract  NSError NSStream.streamError()
          Original signature : -(NSError*)streamError
native declaration : NSStream.h:52
 

Methods in org.rococoa.cocoa.foundation with parameters of type NSError
static NSURLAuthenticationChallenge NSURLAuthenticationChallenge.createWithProtectionSpace_proposedCredential_previousFailureCount_failureResponse_error_sender(NSURLProtectionSpace space, NSURLCredential credential, NSInteger previousFailureCount, NSURLResponse response, NSError error, NSURLAuthenticationChallengeSender sender)
          Factory method
abstract  NSURLAuthenticationChallenge NSURLAuthenticationChallenge.initWithProtectionSpace_proposedCredential_previousFailureCount_failureResponse_error_sender(NSURLProtectionSpace space, NSURLCredential credential, NSInteger previousFailureCount, NSURLResponse response, NSError error, NSURLAuthenticationChallengeSender sender)
           
 

Uses of NSError in org.rococoa.cocoa.foundation.categories
 

Methods in org.rococoa.cocoa.foundation.categories with parameters of type NSError
 void NSErrorRecoveryAttempting.attemptRecoveryFromError_optionIndex_delegate_didRecoverSelector_contextInfo(NSError error, NSUInteger recoveryOptionIndex, ObjCObject delegate, Selector didRecoverSelector, Pointer contextInfo)
          Given that an error alert has been presented document-modally to the user, and the user has chosen one of the error's recovery options, attempt recovery from the error, and send the selected message to the specified delegate.
 boolean NSErrorRecoveryAttempting.attemptRecoveryFromError_optionIndex(NSError error, NSUInteger recoveryOptionIndex)
          Given that an error alert has been presented applicaton-modally to the user, and the user has chosen one of the error's recovery options, attempt recovery from the error, and return YES if error recovery was completely successful, NO otherwise.
 void NSURLConnectionDelegate.connection_didFailWithError(NSURLConnection connection, NSError error)
           
 void NSURLDownloadDelegate.download_didFailWithError(NSURLDownload download, NSError error)
           
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_copyingItemAtPath_toPath(NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath)
          fileManager:shouldProceedAfterError:copyingItemAtPath:toPath: gives the delegate an opportunity to recover from or continue copying after an error.
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_copyingItemAtURL_toURL(NSFileManager fileManager, NSError error, NSURL srcURL, NSURL dstURL)
          Original signature : -(BOOL)fileManager:(NSFileManager*) shouldProceedAfterError:(NSError*) copyingItemAtURL:(NSURL*) toURL:(NSURL*)
from NSFileManagerFileOperationAdditions native declaration : NSFileManager.h:269
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_linkingItemAtPath_toPath(NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath)
          fileManager:shouldProceedAfterError:linkingItemAtPath:toPath: allows the delegate an opportunity to remedy the error which occurred in linking srcPath to dstPath.
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_linkingItemAtURL_toURL(NSFileManager fileManager, NSError error, NSURL srcURL, NSURL dstURL)
          Original signature : -(BOOL)fileManager:(NSFileManager*) shouldProceedAfterError:(NSError*) linkingItemAtURL:(NSURL*) toURL:(NSURL*)
from NSFileManagerFileOperationAdditions native declaration : NSFileManager.h:297
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_movingItemAtPath_toPath(NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath)
          fileManager:shouldProceedAfterError:movingItemAtPath:toPath: functions much like fileManager:shouldProceedAfterError:copyingItemAtPath:toPath: above.
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_movingItemAtURL_toURL(NSFileManager fileManager, NSError error, NSURL srcURL, NSURL dstURL)
          Original signature : -(BOOL)fileManager:(NSFileManager*) shouldProceedAfterError:(NSError*) movingItemAtURL:(NSURL*) toURL:(NSURL*)
from NSFileManagerFileOperationAdditions native declaration : NSFileManager.h:283
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_removingItemAtPath(NSFileManager fileManager, NSError error, NSString path)
          fileManager:shouldProceedAfterError:removingItemAtPath: allows the delegate an opportunity to remedy the error which occurred in removing the item at the path provided.
 boolean NSFileManagerFileOperationAdditions.fileManager_shouldProceedAfterError_removingItemAtURL(NSFileManager fileManager, NSError error, NSURL URL)
          Original signature : -(BOOL)fileManager:(NSFileManager*) shouldProceedAfterError:(NSError*) removingItemAtURL:(NSURL*)
from NSFileManagerFileOperationAdditions native declaration : NSFileManager.h:311
 

Uses of NSError in org.rococoa.cocoa.foundation.protocols
 

Methods in org.rococoa.cocoa.foundation.protocols with parameters of type NSError
 void NSURLProtocolClient.URLProtocol_didFailWithError(NSURLProtocol protocol, NSError error)
           
 



Copyright © 2009. All Rights Reserved.