Up

EODetailDataSource Class

Authors

Mirko Viviani (mirko.viviani@rccr.cremona.it)

Version: 22681

Date: 2006-03-19 19:03:50 +0100 (Son, 19 Mär 2006)

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
Availability: OpenStep

Description forthcoming.

Instance Variables

Method summary

detailDataSourceWithMasterDataSource: detailKey: 

+ (EODetailDataSource*) detailDataSourceWithMasterDataSource: (EODataSource*)master detailKey: (NSString*)detailKey;
Availability: OpenStep

Description forthcoming.

classDescriptionForObjects 

- (EOClassDescription*) classDescriptionForObjects;
Availability: OpenStep

Description forthcoming.

detailKey 

- (NSString*) detailKey;
Availability: OpenStep

Description forthcoming.

editingContext 

- (EOEditingContext*) editingContext;
Availability: OpenStep

Description forthcoming.

initWithKeyValueUnarchiver: 

- (id) initWithKeyValueUnarchiver: (EOKeyValueUnarchiver*)unarchiver;
Availability: OpenStep

Description forthcoming.

initWithMasterClassDescription: detailKey: 

- (id) initWithMasterClassDescription: (EOClassDescription*)masterClassDescription detailKey: (NSString*)detailKey;
Availability: OpenStep

Description forthcoming.

initWithMasterDataSource: detailKey: 

- (id) initWithMasterDataSource: (EODataSource*)master detailKey: (NSString*)detailKey;
Availability: OpenStep

Description forthcoming.

masterClassDescription 

- (EOClassDescription*) masterClassDescription;
Availability: OpenStep

Description forthcoming.

masterDataSource 

- (EODataSource*) masterDataSource;
Availability: OpenStep

Description forthcoming.

masterObject 

- (id) masterObject;
Availability: OpenStep

Description forthcoming.

qualifyWithRelationshipKey: ofObject: 

- (void) qualifyWithRelationshipKey: (NSString*)key ofObject: (id)masterObject;
Availability: OpenStep

Description forthcoming.

setDetailKey: 

- (void) setDetailKey: (NSString*)detailKey;
Availability: OpenStep

Description forthcoming.

setMasterClassDescription: 

- (void) setMasterClassDescription: (EOClassDescription*)classDescription;
Availability: OpenStep

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