Up

EODetailDataSource Class

Authors

Mirko Viviani (mirko.viviani@gmail.com)

Version: 25326

Date: 2007-07-12 08:39:22 +0200 (Don, 12 Jul 2007)

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

Software documentation for the EODetailDataSource class

EODetailDataSource : EODataSource

Declared in:
EOControl/EODetailDataSource.h
Conforms to:
NSCoding
Description forthcoming.

Instance Variables

Method summary

detailDataSourceWithMasterDataSource: detailKey: 

+ (EODetailDataSource*) detailDataSourceWithMasterDataSource: (EODataSource*)master detailKey: (NSString*)detailKey;
Description forthcoming.

classDescriptionForObjects 

- (EOClassDescription*) classDescriptionForObjects;
Description forthcoming.

detailKey 

- (NSString*) detailKey;
Description forthcoming.

editingContext 

- (EOEditingContext*) editingContext;
Description forthcoming.

initWithKeyValueUnarchiver: 

- (id) initWithKeyValueUnarchiver: (EOKeyValueUnarchiver*)unarchiver;
Description forthcoming.

initWithMasterClassDescription: detailKey: 

- (id) initWithMasterClassDescription: (EOClassDescription*)masterClassDescription detailKey: (NSString*)detailKey;
Description forthcoming.

initWithMasterDataSource: detailKey: 

- (id) initWithMasterDataSource: (EODataSource*)master detailKey: (NSString*)detailKey;
Description forthcoming.

masterClassDescription 

- (EOClassDescription*) masterClassDescription;
Description forthcoming.

masterDataSource 

- (EODataSource*) masterDataSource;
Description forthcoming.

masterObject 

- (id) masterObject;
Description forthcoming.

qualifyWithRelationshipKey: ofObject: 

- (void) qualifyWithRelationshipKey: (NSString*)key ofObject: (id)masterObject;
Description forthcoming.

setDetailKey: 

- (void) setDetailKey: (NSString*)detailKey;
Description forthcoming.

setMasterClassDescription: 

- (void) setMasterClassDescription: (EOClassDescription*)classDescription;
Description forthcoming.



Instance Variables for EODetailDataSource Class

_detailKey

@protected NSString* _detailKey;
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.

_masterClassDescriptionName

@protected NSString* _masterClassDescriptionName;
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.

_masterDataSource

@protected EODataSource* _masterDataSource;
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.

_masterObject

@protected id _masterObject;
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