Up

EONSAddOns

Authors

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.


Contents -

  1. Software documentation for the NSArray(NSArrayPerformingSelector) category
  2. Software documentation for the NSObject(EOCompareOnName) category
  3. Software documentation for the NSObject(NSObjectPerformingSelector) category
  4. Software documentation for the NSObject(PerformSelect3) category
  5. Software documentation for the NSString(Extensions) category
  6. Software documentation for the NSString(StringToNumber) category
  7. Software documentation for the NSString(VersionParsing) category
  8. Software documentation for the NSString(YorYes) category
  9. EONSAddOns macros
  10. EONSAddOns functions

Software documentation for the NSArray(NSArrayPerformingSelector) category

NSArray(NSArrayPerformingSelector)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

arrayByReplacingObject: withObject: 

- (NSArray*) arrayByReplacingObject: (id)object1 withObject: (id)object2;
Description forthcoming.

arrayExcludingObject: 

- (NSArray*) arrayExcludingObject: (id)object;
Description forthcoming.

arrayExcludingObjectsInArray: 

- (NSArray*) arrayExcludingObjectsInArray: (NSArray*)array;
Description forthcoming.

containsIdenticalObjectsWithArray: 

- (BOOL) containsIdenticalObjectsWithArray: (NSArray*)array;
return YES if the 2 arrays contains exactly identical objects (compared by address) (i.e. only the order may change), NO otherwise

firstObject 

- (id) firstObject;
Description forthcoming.

resultsOfPerformingSelector: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel;
Description forthcoming.

resultsOfPerformingSelector: defaultResult: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel defaultResult: (id)defaultResult;
Description forthcoming.

resultsOfPerformingSelector: withObject: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withObject: (id)obj1;
Description forthcoming.

resultsOfPerformingSelector: withObject: defaultResult: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withObject: (id)obj1 defaultResult: (id)defaultResult;
Description forthcoming.

resultsOfPerformingSelector: withObject: withObject: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withObject: (id)obj1 withObject: (id)obj2;
Description forthcoming.

resultsOfPerformingSelector: withObject: withObject: defaultResult: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withObject: (id)obj1 withObject: (id)obj2 defaultResult: (id)defaultResult;
Description forthcoming.

Software documentation for the NSObject(EOCompareOnName) category

NSObject(EOCompareOnName)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

eoCompareOnName: 

- (NSComparisonResult) eoCompareOnName: (id)object;
Description forthcoming.

Software documentation for the NSObject(NSObjectPerformingSelector) category

NSObject(NSObjectPerformingSelector)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

resultsOfPerformingSelector: withEachObjectInArray: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withEachObjectInArray: (NSArray*)array;
Description forthcoming.

resultsOfPerformingSelector: withEachObjectInArray: defaultResult: 

- (NSArray*) resultsOfPerformingSelector: (SEL)sel withEachObjectInArray: (NSArray*)array defaultResult: (id)defaultResult;
Description forthcoming.

Software documentation for the NSObject(PerformSelect3) category

NSObject(PerformSelect3)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

performSelector: withObject: withObject: withObject: 

- (id) performSelector: (SEL)selector withObject: (id)object1 withObject: (id)object2 withObject: (id)object3;
Causes the receiver to execute the method implementation corresponding to selector and returns the result.
The method must be one which takes three arguments and returns an object.
Raises NSInvalidArgumentException if given a null selector.
Causes the receiver to execute the method implementation corresponding to aSelector and returns the result.
The method must be one which takes three arguments and returns an object.
Raises NSInvalidArgumentException if given a null selector.

Software documentation for the NSString(Extensions) category

NSString(Extensions)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

initialCapitalizedString 

- (NSString*) initialCapitalizedString;
Description forthcoming.

Software documentation for the NSString(StringToNumber) category

NSString(StringToNumber)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

longLongValue 

- (long long) longLongValue;
Description forthcoming.

longValue 

- (long) longValue;
Description forthcoming.

shortValue 

- (short) shortValue;
Description forthcoming.

unsignedIntValue 

- (unsigned int) unsignedIntValue;
Description forthcoming.

unsignedLongLongValue 

- (unsigned long long) unsignedLongLongValue;
Description forthcoming.

unsignedLongValue 

- (unsigned long) unsignedLongValue;
Description forthcoming.

unsignedShortValue 

- (unsigned short) unsignedShortValue;
Description forthcoming.

Software documentation for the NSString(VersionParsing) category

NSString(VersionParsing)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

parsedFirstVersionSubstring 

- (int) parsedFirstVersionSubstring;
Description forthcoming.

Software documentation for the NSString(YorYes) category

NSString(YorYes)

Declared in:
EOControl/EONSAddOns.h
Description forthcoming.
Method summary

isYorYES 

- (BOOL) isYorYES;
Description forthcoming.

EONSAddOns macros

GDL2_BUFFER

GDL2_BUFFER(ID, SIZE, TYPE)
This define is experimental. Expect it to be replaced.

EONSAddOns functions

GDL2_ActivateAllGDL2Categories

void GDL2_ActivateAllGDL2Categories();
Description forthcoming.

GDL2_ActivateCategory

void GDL2_ActivateCategory(const char* className, SEL sel, BOOL isInstance);
Description forthcoming.

GSUseStrictWO451Compatibility

BOOL GSUseStrictWO451Compatibility(NSString* key);
Description forthcoming.


Up