comparison dstep/foundation/NSObject.d @ 22:f8a3b67adfcb

Removed duplicated methods
author Jacob Carlborg <doob@me.com>
date Tue, 09 Feb 2010 18:02:03 +0100
parents 6255d355d752
children b9de51448c6b
comparison
equal deleted inserted replaced
21:6b688d8f62c5 22:f8a3b67adfcb
649 bool fileManager_shouldProceedAfterError_movingItemAtPath_toPath (NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath) 649 bool fileManager_shouldProceedAfterError_movingItemAtPath_toPath (NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath)
650 { 650 {
651 return invokeObjcSelf!(bool, "fileManager:shouldProceedAfterError:movingItemAtPath:toPath:", NSFileManager, NSError, NSString, NSString)(fileManager, error, srcPath, dstPath); 651 return invokeObjcSelf!(bool, "fileManager:shouldProceedAfterError:movingItemAtPath:toPath:", NSFileManager, NSError, NSString, NSString)(fileManager, error, srcPath, dstPath);
652 } 652 }
653 653
654 bool fileManager (NSFileManager fileManager, NSString srcPath, NSString dstPath) 654 bool fileManager_shouldLinkItemAtPath_toPath (NSFileManager fileManager, NSString srcPath, NSString dstPath)
655 { 655 {
656 return invokeObjcSelf!(bool, "fileManager:shouldLinkItemAtPath:toPath:", NSFileManager, NSString, NSString)(fileManager, srcPath, dstPath); 656 return invokeObjcSelf!(bool, "fileManager:shouldLinkItemAtPath:toPath:", NSFileManager, NSString, NSString)(fileManager, srcPath, dstPath);
657 } 657 }
658 658
659 bool fileManager_shouldProceedAfterError_linkingItemAtPath_toPath (NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath) 659 bool fileManager_shouldProceedAfterError_linkingItemAtPath_toPath (NSFileManager fileManager, NSError error, NSString srcPath, NSString dstPath)
1039 Object newScriptingObjectOfClass (Class objectClass, NSString key, Object contentsValue, NSDictionary properties) 1039 Object newScriptingObjectOfClass (Class objectClass, NSString key, Object contentsValue, NSDictionary properties)
1040 { 1040 {
1041 return invokeObjcSelf!(Object, "newScriptingObjectOfClass:forValueForKey:withContentsValue:properties:", Class, NSString, Object, NSDictionary)(objectClass, key, contentsValue, properties); 1041 return invokeObjcSelf!(Object, "newScriptingObjectOfClass:forValueForKey:withContentsValue:properties:", Class, NSString, Object, NSDictionary)(objectClass, key, contentsValue, properties);
1042 } 1042 }
1043 1043
1044 Object scriptingValueForSpecifier (NSScriptObjectSpecifier objectSpecifier)
1045 {
1046 return invokeObjcSelf!(Object, "scriptingValueForSpecifier:", NSScriptObjectSpecifier)(objectSpecifier);
1047 }
1048
1049 bool scriptingIsEqualTo (Object object) 1044 bool scriptingIsEqualTo (Object object)
1050 { 1045 {
1051 return invokeObjcSelf!(bool, "scriptingIsEqualTo:", Object)(object); 1046 return invokeObjcSelf!(bool, "scriptingIsEqualTo:", Object)(object);
1052 } 1047 }
1053 1048