Up

EODatabaseChannel

Authors

Mirko Viviani (mirko.viviani@gmail.com)
Manuel Guesdon (mguesdon@orange-concept.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 EODatabaseChannel class

EODatabaseChannel : NSObject

Declared in:
EOAccess/EODatabaseChannel.h
Description forthcoming.

Instance Variables

Method summary

databaseChannelWithDatabaseContext: 

+ (EODatabaseChannel*) databaseChannelWithDatabaseContext: (EODatabaseContext*)databaseContext;
Description forthcoming.

adaptorChannel 

- (EOAdaptorChannel*) adaptorChannel;
Description forthcoming.

cancelFetch 

- (void) cancelFetch;
Description forthcoming.

databaseContext 

- (EODatabaseContext*) databaseContext;
Description forthcoming.

delegate 

- (id) delegate;
Description forthcoming.

fetchObject 

- (id) fetchObject;
Description forthcoming.

initWithDatabaseContext: 

- (id) initWithDatabaseContext: (EODatabaseContext*)databaseContext;
Description forthcoming.

isFetchInProgress 

- (BOOL) isFetchInProgress;
Description forthcoming.

isLocking 

- (BOOL) isLocking;
Description forthcoming.

isRefreshingObjects 

- (BOOL) isRefreshingObjects;
Description forthcoming.

selectObjectsWithFetchSpecification: editingContext: 

- (void) selectObjectsWithFetchSpecification: (EOFetchSpecification*)fetchSpecification editingContext: (EOEditingContext*)context;
Description forthcoming.

setCurrentEditingContext: 

- (void) setCurrentEditingContext: (EOEditingContext*)context;
Description forthcoming.

setCurrentEntity: 

- (void) setCurrentEntity: (EOEntity*)entity;
Description forthcoming.

setDelegate: 

- (void) setDelegate: (id)delegate;
Description forthcoming.

setEntity: 

- (void) setEntity: (EOEntity*)entity;
Description forthcoming.

setIsLocking: 

- (void) setIsLocking: (BOOL)isLocking;
Description forthcoming.

setIsRefreshingObjects: 

- (void) setIsRefreshingObjects: (BOOL)yn;
Description forthcoming.



Instance Variables for EODatabaseChannel Class

_adaptorChannel

@protected EOAdaptorChannel* _adaptorChannel;
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.

_currentEditingContext

@protected EOEditingContext* _currentEditingContext;
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.

_currentEntity

@protected EOEntity* _currentEntity;
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.

_databaseContext

@protected EODatabaseContext* _databaseContext;
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.

_delegate

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

_delegateRespondsTo

@protected struct ... _delegateRespondsTo;
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.

_fetchProperties

@protected NSMutableArray* _fetchProperties;
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.

_fetchSpecifications

@protected NSMutableArray* _fetchSpecifications;
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.

_isLocking

@protected BOOL _isLocking;
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.

_isRefreshingObjects

@protected BOOL _isRefreshingObjects;
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