Up

EOStoredProcedure Class

Authors

Mirko Viviani (mirko.viviani@gmail.com)

Version: 26594

Date: 2008-06-06 01:14:14 +0200 (Fre, 06 Jun 2008)

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


Contents -

  1. Software documentation for the EOStoredProcedure class
  2. Software documentation for the EOStoredProcedure(EOModelBeautifier) category

Software documentation for the EOStoredProcedure class

EOStoredProcedure : NSObject

Declared in:
EOAccess/EOStoredProcedure.h
Conforms to:
EOPropertyListEncoding
Description forthcoming.

Instance Variables

Method summary

storedProcedureWithPropertyList: owner: 

+ (EOStoredProcedure*) storedProcedureWithPropertyList: (NSDictionary*)propertyList owner: (id)owner;
Description forthcoming.

arguments 

- (NSArray*) arguments;
Description forthcoming.

externalName 

- (NSString*) externalName;
Description forthcoming.

initWithName: 

- (EOStoredProcedure*) initWithName: (NSString*)name;
Description forthcoming.

model 

- (EOModel*) model;
Description forthcoming.

name 

- (NSString*) name;
Description forthcoming.

setArguments: 

- (void) setArguments: (NSArray*)arguments;
Description forthcoming.

setExternalName: 

- (void) setExternalName: (NSString*)name;
Description forthcoming.

setName: 

- (void) setName: (NSString*)name;
Description forthcoming.

setUserInfo: 

- (void) setUserInfo: (NSDictionary*)dictionary;
Description forthcoming.

userInfo 

- (NSDictionary*) userInfo;
Description forthcoming.



Instance Variables for EOStoredProcedure Class

_arguments

@protected NSArray* _arguments;
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.

_externalName

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

_internalInfo

@protected NSDictionary* _internalInfo;
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.

_model

@protected EOModel* _model;
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.

_name

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

_userInfo

@protected NSDictionary* _userInfo;
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.




Software documentation for the EOStoredProcedure(EOModelBeautifier) category

EOStoredProcedure(EOModelBeautifier)

Declared in:
EOAccess/EOStoredProcedure.h
Description forthcoming.
Method summary

beautifyName 

- (void) beautifyName;
Description forthcoming.


Up