Up
Authors
- Generated by Richard Frith-Macdonald
-
Date: Generated at 2025-12-01
- Declared in:
- WebObjects/WOKeyValueUnarchiver.h
Availability: OpenStep
Description forthcoming.
WOKeyValueUnarchiver declares 6 Instance Variables
- (id)
_dictionaryForPropertyList: (
NSDictionary*)propList;
Availability: OpenStep
Warning the underscore at the start of the
name of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
- (id)
_findTypeForPropertyListDecoding: (id)obj;
Availability: OpenStep
Warning the underscore at the start of the
name of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
- (id)
_objectForPropertyList: (
NSDictionary*)propList;
Availability: OpenStep
Warning the underscore at the start of the
name of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
- (id)
_objectsForPropertyList: (
NSArray*)propList;
Availability: OpenStep
Warning the underscore at the start of the
name of this method indicates that it is private, for
internal use only, and you should not use the
method in your code.
- (void)
awakeObjects;
Availability: OpenStep
Finalize unarchiving by calling
awakeFromKeyValueUnarchiver:
on all unarchived objects
- (BOOL)
decodeBoolForKey: (
NSString*)key;
Availability: OpenStep
Returns unarchived boolean which was archived as
'key'. NO if no object is found
- (int)
decodeIntForKey: (
NSString*)key;
Availability: OpenStep
Returns unarchived integer which was archived as
'key'. 0 if no object is found
- (id)
decodeObjectForKey: (
NSString*)key;
Availability: OpenStep
Returns unarchived object for
key. The
object should be a NSString, NSData, NSArray or
NSDictionary or its class instances should
implements
-initWithKeyValueUnarchiver:
- (id)
decodeObjectReferenceForKey: (
NSString*)key;
Availability: OpenStep
Returns unarchived object for the reference
archived as 'key'. The receiver gets the object
for reference by calling its delegate method
-unarchiver:objectForReference:
- (id)
delegate;
Availability: OpenStep
Returns receiver's delegate
- (void)
ensureObjectAwake: (id)object;
Availability: OpenStep
- (void)
finishInitializationOfObjects;
Availability: OpenStep
Finalize unarchiving by calling
finishInitializationWithKeyValueUnarchiver:
on all unarchived objects
- (id)
initWithDictionary: (
NSDictionary*)dictionary;
Availability: OpenStep
Inits unarchiver with propertyList 'dictionary'
- (BOOL)
isThereValueForKey: (
NSString*)key;
Availability: OpenStep
Returns YES if there's a value for
key 'key'
- (id)
parent;
Availability: OpenStep
Returns the parent object for the currently
unarchiving object.
- (void)
setDelegate: (id)delegate;
Availability: OpenStep
Set the receiver's delegate
Instance Variables for WOKeyValueUnarchiver Class
@protected NSMutableArray*
_allUnarchivedObjects;
Availability: OpenStep
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.
@protected NSHashTable*
_awakenedObjects;
Availability: OpenStep
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.
@protected id
_delegate;
Availability: OpenStep
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.
@protected id
_nextParent;
Availability: OpenStep
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.
@protected id
_parent;
Availability: OpenStep
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.
@protected NSDictionary*
_propertyList;
Availability: OpenStep
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.
- Declared in:
- WebObjects/WOKeyValueUnarchiver.h
Availability: OpenStep
Description forthcoming.
- (void)
awakeFromKeyValueUnarchiver: (
WOKeyValueUnarchiver*)unarchiver;
Availability: OpenStep
Description forthcoming.
- (void)
finishInitializationWithKeyValueUnarchiver: (
WOKeyValueUnarchiver*)unarchiver;
Availability: OpenStep
Description forthcoming.
- Declared in:
- WebObjects/WOKeyValueUnarchiver.h
Availability: OpenStep
Description forthcoming.
- (id)
unarchiver: (
WOKeyValueUnarchiver*)archiver
objectForReference: (id)keyPath;
Availability: OpenStep
Returns an object for archived 'reference'.
Implemented by WOKeyValueUnarchiver's delegate.
- Declared in:
- WebObjects/WOKeyValueUnarchiver.h
Availability: OpenStep
Description forthcoming.
- (id)
initWithKeyValueUnarchiver: (
WOKeyValueUnarchiver*)unarchiver;
Availability: OpenStep
Description forthcoming.
Up