2002-05-13 22:13:06 +00:00
|
|
|
/** Foundation-operators.stenv
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
|
|
|
Name = "Foundation-operators";
|
|
|
|
Use = (SymbolicSelectors);
|
|
|
|
|
|
|
|
DefaultRestriction = AllowAll;
|
|
|
|
|
|
|
|
Behaviours =
|
|
|
|
{
|
|
|
|
"NSObject-operators" = {
|
2002-06-06 17:14:05 +00:00
|
|
|
Use = (Comparison, KeyValueCoding);
|
2002-05-13 22:13:06 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Classes =
|
|
|
|
{
|
2002-06-07 22:13:51 +00:00
|
|
|
All = {
|
|
|
|
|
|
|
|
};
|
2004-06-20 12:18:49 +00:00
|
|
|
|
|
|
|
// added by mateu
|
|
|
|
"NSObject class" = {
|
|
|
|
SymbolicSelectors = {
|
|
|
|
"=" = "isEqual:";
|
|
|
|
"==" = "isSame:";
|
|
|
|
"~=" = "notEqual:";
|
|
|
|
"~~" = "notSame:";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2002-05-13 22:13:06 +00:00
|
|
|
NSObject = {
|
|
|
|
Use = ("NSObject-operators");
|
|
|
|
};
|
|
|
|
|
2002-06-07 22:13:51 +00:00
|
|
|
NSProxy = {
|
|
|
|
Use = (KeyValueCoding);
|
|
|
|
};
|
|
|
|
|
2002-05-13 22:13:06 +00:00
|
|
|
NSArray = {
|
|
|
|
Super = "NSObject";
|
|
|
|
SymbolicSelectors = {
|
|
|
|
"@" = "objectAtIndex:";
|
|
|
|
"," = "arrayByAddingObject:";
|
|
|
|
"+" = "arrayByAddingObject:";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
NSMutableArray = {
|
|
|
|
Super = "NSArray";
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"+=" = "addObject:";
|
|
|
|
"-=" = "removeObject:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NSDictionary =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
SymbolicSelectors = {
|
|
|
|
"@" = "objectForKey:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NSUserDefaults =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
SymbolicSelectors = {
|
|
|
|
"@" = "objectForKey:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NSString =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"," = "stringByAppendingString:";
|
|
|
|
"/" = "stringByAppendingPathComponent:";
|
|
|
|
"@" = "characterAtIndex:";
|
|
|
|
};
|
|
|
|
Aliases =
|
|
|
|
{
|
|
|
|
size = length;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
NSMutableString =
|
|
|
|
{
|
|
|
|
Super = NSString;
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"+=" = "appendString:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NSSet =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"<" = "isSubsetOfSet:";
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
NSMutableSet =
|
|
|
|
{
|
|
|
|
Super = NSSet;
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"+=" = "addObject:";
|
|
|
|
"-=" = "removeObject:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NSDate =
|
|
|
|
{
|
|
|
|
Super = NSObject;
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"-" = "timeIntervalSinceDate:";
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
NSNumber =
|
|
|
|
{
|
|
|
|
Super = NSValue;
|
|
|
|
Use = (NumberArithmetic);
|
|
|
|
|
|
|
|
SymbolicSelectors =
|
|
|
|
{
|
|
|
|
"<>" = "rangeWith:";
|
|
|
|
"@" = "pointWith:";
|
|
|
|
"@@" = "sizeWith:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}; /* Classes */
|
|
|
|
}
|