Up

EOFault Class

Authors

Mircea Oancea (mircea@jupiter.elcom.pub.ro)
Mirko Viviani (mirko.viviani@gmail.com)

Version: 26237

Date: 2008-03-07 12:09:35 +0100 (Fre, 07 Mär 2008)

Copyright: (C) 1996-2002,2003,2004,2005 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the EOFault class
  2. Software documentation for the EOFaultHandler class

Software documentation for the EOFault class

EOFault

Declared in:
EOControl/EOFault.h
Description forthcoming.

Instance Variables

Method summary

autorelease 

+ (id) autorelease;
Description forthcoming.

class 

+ (Class) class;
Description forthcoming.

clearFault: 

+ (void) clearFault: (id)fault;
Description forthcoming.

doesNotRecognizeSelector: 

+ (void) doesNotRecognizeSelector: (SEL)selector;
Description forthcoming.

handlerForFault: 

+ (EOFaultHandler*) handlerForFault: (id)fault;
Description forthcoming.

initialize 

+ (void) initialize;
Description forthcoming.

isFault: 

+ (BOOL) isFault: (id)object;
Description forthcoming.

isKindOfClass: 

+ (BOOL) isKindOfClass: (Class)aClass;
Description forthcoming.

makeObjectIntoFault: withHandler: 

+ (void) makeObjectIntoFault: (id)object withHandler: (EOFaultHandler*)handler;
Description forthcoming.

release 

+ (void) release;
Description forthcoming.

respondsToSelector: 

+ (BOOL) respondsToSelector: (SEL)selector;
Description forthcoming.

retain 

+ (id) retain;
Description forthcoming.

retainCount 

+ (unsigned) retainCount;
Description forthcoming.

self 

+ (id) self;
Description forthcoming.

superclass 

+ (Class) superclass;
Description forthcoming.

targetClassForFault: 

+ (Class) targetClassForFault: (id)fault;
Description forthcoming.

autorelease 

- (id) autorelease;
Description forthcoming.

class 

- (Class) class;
Description forthcoming.

conformsToProtocol: 

- (BOOL) conformsToProtocol: (Protocol*)protocol;
Description forthcoming.

dealloc 

- (void) dealloc;
Description forthcoming.

description 

- (NSString*) description;
Description forthcoming.

descriptionWithIndent: 

- (NSString*) descriptionWithIndent: (unsigned)level;
Description forthcoming.

descriptionWithLocale: 

- (NSString*) descriptionWithLocale: (NSDictionary*)locale;
Description forthcoming.

descriptionWithLocale: indent: 

- (NSString*) descriptionWithLocale: (NSDictionary*)locale indent: (unsigned)level;
Description forthcoming.

doesNotRecognizeSelector: 

- (void) doesNotRecognizeSelector: (SEL)selector;
Description forthcoming.

eoDescription 

- (NSString*) eoDescription;
Description forthcoming.

eoShallowDescription 

- (NSString*) eoShallowDescription;
Description forthcoming.

forwardInvocation: 

- (void) forwardInvocation: (NSInvocation*)invocation;
Description forthcoming.

isKindOfClass: 

- (BOOL) isKindOfClass: (Class)aClass;
Description forthcoming.

isMemberOfClass: 

- (BOOL) isMemberOfClass: (Class)aClass;
Description forthcoming.

isProxy 

- (BOOL) isProxy;
Description forthcoming.

methodSignatureForSelector: 

- (NSMethodSignature*) methodSignatureForSelector: (SEL)selector;
Description forthcoming.

release 

- (void) release;
Description forthcoming.

respondsToSelector: 

- (BOOL) respondsToSelector: (SEL)selector;
Description forthcoming.

retain 

- (id) retain;
Description forthcoming.

retainCount 

- (unsigned) retainCount;
Description forthcoming.

self 

- (id) self;
Description forthcoming.

superclass 

- (Class) superclass;
Description forthcoming.

zone 

- (NSZone*) zone;
Description forthcoming.



Instance Variables for EOFault Class

_handler

@public EOFaultHandler* _handler;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

isa

@public Class isa;
Description forthcoming.




Software documentation for the EOFaultHandler class

EOFaultHandler : NSObject

Declared in:
EOControl/EOFault.h
Description forthcoming.

Instance Variables

Method summary

classForFault: 

- (Class) classForFault: (id)fault;
Description forthcoming.

completeInitializationOfObject: 

- (void) completeInitializationOfObject: (id)object;
Description forthcoming.

conformsToProtocol: forFault: 

- (BOOL) conformsToProtocol: (Protocol*)protocol forFault: (id)fault;
Description forthcoming.

decrementExtraRefCountIsZero 

- (BOOL) decrementExtraRefCountIsZero;
Description forthcoming.

descriptionForObject: 

- (NSString*) descriptionForObject: (id)object;
Description forthcoming.

extraData 

- (void*) extraData;
Description forthcoming.

extraRefCount 

- (unsigned) extraRefCount;
Description forthcoming.

faultWillFire: 

- (void) faultWillFire: (id)object;
Description forthcoming.

incrementExtraRefCount 

- (void) incrementExtraRefCount;
Description forthcoming.

isKindOfClass: forFault: 

- (BOOL) isKindOfClass: (Class)aclass forFault: (id)fault;
Description forthcoming.

isMemberOfClass: forFault: 

- (BOOL) isMemberOfClass: (Class)aclass forFault: (id)fault;
Description forthcoming.

methodSignatureForSelector: forFault: 

- (NSMethodSignature*) methodSignatureForSelector: (SEL)selector forFault: (id)fault;
Description forthcoming.

respondsToSelector: forFault: 

- (BOOL) respondsToSelector: (SEL)sel forFault: (id)fault;
Description forthcoming.

setTargetClass: extraData: 

- (void) setTargetClass: (Class)target extraData: (void*)data;
Description forthcoming.

shouldPerformInvocation: 

- (BOOL) shouldPerformInvocation: (NSInvocation*)invocation;
Description forthcoming.

targetClass 

- (Class) targetClass;
Description forthcoming.



Instance Variables for EOFaultHandler Class

_extraData

@protected void* _extraData;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_extraRefCount

@protected unsigned int _extraRefCount;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_targetClass

@protected Class _targetClass;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up