Up

EONSAddOns

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Date: Generated at 2024-07-11 05:00:48 +0000

Copyright: (C) 2000-2002,2003,2004,2005,2006,2007,2010


Contents -

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

Software documentation for the NSArray(NSArrayPerformingSelector) category

NSArray(NSArrayPerformingSelector)

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

diffOldArray: newArray: returnsRemovedValues: addedValues: 

+ (BOOL) diffOldArray: (NSArray*)oldArray newArray: (NSArray*)newArray returnsRemovedValues: (NSArray**)removedValues addedValues: (NSArray**)addedValues;
Description forthcoming.

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 NSDictionary(EOAdditions) category

NSDictionary(EOAdditions)

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

dictionaryWithNullValuesForKeys: 

+ (NSDictionary*) dictionaryWithNullValuesForKeys: (NSArray*)keys;
creates an new dictionary with EONull for the keys

containsAnyNullObject 

- (BOOL) containsAnyNullObject;
return YES if any EONull is into receiver. otherwise return NO.

Software documentation for the NSMutableDictionary(EOAdditions) category

NSMutableDictionary(EOAdditions)

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

dictionaryWithDictionary: keys: 

+ (NSMutableDictionary*) dictionaryWithDictionary: (NSDictionary*)otherDictionary keys: (NSArray*)keys;
Creates an autoreleased mutable dictionary based on otherDictionary but only with keys from the keys array.

overrideEntriesWithObjectsFromDictionary: forKeys: 

- (void) overrideEntriesWithObjectsFromDictionary: (NSDictionary*)dict forKeys: (NSArray*)keys;
Override self values with values from dict for keys

translateFromKeys: toKeys: 

- (void) translateFromKeys: (NSArray*)currentKeys toKeys: (NSArray*)newKeys;
replaces the current keys with the new ones without changing the contents only keys from currentKeys are left in the receiver.

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.

performSelector: withPointer: 

- (id) performSelector: (SEL)selector withPointer: (void*)ptr;
Description forthcoming.

Software documentation for the NSString(EORelationshipPath) category

NSString(EORelationshipPath)

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

firstComponentFromRelationshipPath 

- (NSString*) firstComponentFromRelationshipPath;
Description forthcoming.

lastComponentFromRelationshipPath 

- (NSString*) lastComponentFromRelationshipPath;
Description forthcoming.

relationshipPathByDeletingFirstComponent 

- (NSString*) relationshipPathByDeletingFirstComponent;
Description forthcoming.

relationshipPathByDeletingLastComponent 

- (NSString*) relationshipPathByDeletingLastComponent;
Description forthcoming.

relationshipPathIsMultiHop 

- (BOOL) relationshipPathIsMultiHop;
Description forthcoming.

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

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_Activate

void GDL2_Activate(Class sup, Class cls);
Description forthcoming.

GSUseStrictWO451Compatibility

BOOL GSUseStrictWO451Compatibility(NSString* key);
This define is experimental. Expect it to be replaced.


Up