xamarin-macios/tests/xtro-sharpie/macOS-Foundation.ignore

786 строки
49 KiB
Plaintext
Исходник Обычный вид История

## Only one type currently, which default returns. Currently unneeded unless they extend.
!missing-selector! +NSDistributedNotificationCenter::notificationCenterForType: not bound
## XPC not supported
Add bindings for NSXpcConnection and related types (#7001) * Add bindings for NSXpcConnection and related types * Re-add accidentally deleted file * Typo fix * Add NSXpcInterface.CreateForType() * Add MethodInfo-taking overloads to NSXpcInterface * Add null check * Mark methods with wrappers as internal Also fixed a formatting bug that I didn't catch earlier. * Change NSXPCProxyCreating methods to be strongly typed I got rid of the NSXpcProxyCreating interface in this change, because its only user was NSXpcConnection, and I needed to inline the protocol methods into the class definition so I could mark them as [Internal]. * Add missing casts * Add NSXpcConnectionOptions enum * Convert NSXpcConnection constructor to use new enum * Remove now-unneeded manual constructor * Fix bgen warning * Typo fix * Fix selector * Remove incorrect use of BindAsAttribute Per the docs, this only works for enums backed by NSNumber and NSValue, not for enums passed directly as integers. * Fix duplicated selector errors * Throw ArgumentException instead of InvalidOperationException * Extend AppExtension targets to produce XPC services Rather than create an entirely new set of targets (that would require VS and VSMac updates to properly consume), I have decided to use the existing AppExtension build targets to produce XPC services as well. All the user must do is set the $(IsXPCService) property to true in their project file, and the targets will do The Right Thing™. Note that this support is Mac-only for now; I may need a bit of help adjusting them to work on for iOS/watchOS/tvOS, as I am not as familiar with those platforms. * Copy XPC service bundles into the correct location * Move IsXPCService property definition to props file * Don't pass /extension to mmp for XPC service targets This would cause the XPC service binary to be linked incorrectly. * Add NSXpcConnection/NSXpcInterface.cs files to the build * Fix build * Fix build * Add required type parameter requirements * Fix type parameter requirements * Fix return type * Fix return type of NSXpcInterface.CreateForProtocol () * Take ownership of the returned object types * Adjust XPC service mmp invocation I need to link the XPC service bundle as if it is an app extension, but I must not use xamarin_mac_extension_main. I added a new flag to make this possible. * Change mmp to correctly construct XPC service bundle * Set the MonoBundleExecutable Info.plist key for XPC services * Use the runtime to get the protocol * Make NSXpcInterface.CreateForProtocol() public The static registrar must be used for Cocoa to accept the protocol as a valid XPC interface, but that then seems to break resolving the protocol from the type. I must therefore hard-code the protocol name in my code, and that requires I make this constructor public. * Add XpcInterfaceAttribute See the doc comment in XpcInterfaceAttribute.cs for why this type is required. The referenced mmp optimizations will be added in future commits. * Add XpcInterfaceAttribute to generator build * Add support for XpcInterfaceAttribute to the generator * Force static generation of protocols decorated with XpcInterfaceAttribute * Change how static registrar translates block parameters Previously, they would always be marshalled as "id". This would throw off the XPC subsystem, which parses the block signature to determine the communication protocol. * Undo whitespace noise * Remove unneeded casts * Add trailing comma * Use HasAttribute instead of GetCustomAttribute * Fix style issues * Bind NSXpcConnection.auditSessionIdentifier * Address naming feedback * Make Get/SetAllowedClasses public IMHO, passing the selector as a string is just as usable as passing a MethodInfo, and is also less verbose if you copy/paste the selector string from the ExportAttribute. There is no reason why we cannot have both overloads be public. * Update overload names to match * Update more overload names to match * Make mmp --xpc imply --extension * Reformat if statement * Fix build * Conditionalize creation of PlugIns and XPCServices directories * Add AutoGeneratedName Co-Authored-By: Rolf Bjarne Kvinge <rolf@xamarin.com> * Get rid of ProtocolizeAttribute * Update availability attributes to please xharness I actually think xharness is wrong here, since the NSXPCConnection header lists these types as being available starting in macOS 10.8. * Update sharpie ignore files to reflect changes This should fix the xtro-sharpie test failures CI has been reporting. * Fix MM4105 error generation * Adjust error message in test to match mmp I had to change the error text slightly, because the type of the parameter cannot be determined where the error is thrown anymore. However, the newer exception message IMO is just as clear. * Make exception message match test exactly * Remove outdated copyright header text * Remove more outdated copyright header text * Revert changes to MM4105 error generation I have a more elegant way of fixing this test now. * Return "id" if Invoke method cannot be found This fixes the MM4105 error unit test, without requiring modification to that test. * Remove redundant availability attributes * Add DesignatedInitializerAttribute * Re-add required code to macOS-Foundation.ignore * Put DesignatedInitializer on the right constructor * Update xtro-sharpie ignore files
2019-10-22 16:38:01 +03:00
!missing-selector! NSXPCInterface::interfaceForSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::setInterface:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::setXPCType:forSelector:argumentIndex:ofReply: not bound
!missing-selector! NSXPCInterface::XPCTypeForSelector:argumentIndex:ofReply: not bound
Add bindings for NSXpcConnection and related types (#7001) * Add bindings for NSXpcConnection and related types * Re-add accidentally deleted file * Typo fix * Add NSXpcInterface.CreateForType() * Add MethodInfo-taking overloads to NSXpcInterface * Add null check * Mark methods with wrappers as internal Also fixed a formatting bug that I didn't catch earlier. * Change NSXPCProxyCreating methods to be strongly typed I got rid of the NSXpcProxyCreating interface in this change, because its only user was NSXpcConnection, and I needed to inline the protocol methods into the class definition so I could mark them as [Internal]. * Add missing casts * Add NSXpcConnectionOptions enum * Convert NSXpcConnection constructor to use new enum * Remove now-unneeded manual constructor * Fix bgen warning * Typo fix * Fix selector * Remove incorrect use of BindAsAttribute Per the docs, this only works for enums backed by NSNumber and NSValue, not for enums passed directly as integers. * Fix duplicated selector errors * Throw ArgumentException instead of InvalidOperationException * Extend AppExtension targets to produce XPC services Rather than create an entirely new set of targets (that would require VS and VSMac updates to properly consume), I have decided to use the existing AppExtension build targets to produce XPC services as well. All the user must do is set the $(IsXPCService) property to true in their project file, and the targets will do The Right Thing™. Note that this support is Mac-only for now; I may need a bit of help adjusting them to work on for iOS/watchOS/tvOS, as I am not as familiar with those platforms. * Copy XPC service bundles into the correct location * Move IsXPCService property definition to props file * Don't pass /extension to mmp for XPC service targets This would cause the XPC service binary to be linked incorrectly. * Add NSXpcConnection/NSXpcInterface.cs files to the build * Fix build * Fix build * Add required type parameter requirements * Fix type parameter requirements * Fix return type * Fix return type of NSXpcInterface.CreateForProtocol () * Take ownership of the returned object types * Adjust XPC service mmp invocation I need to link the XPC service bundle as if it is an app extension, but I must not use xamarin_mac_extension_main. I added a new flag to make this possible. * Change mmp to correctly construct XPC service bundle * Set the MonoBundleExecutable Info.plist key for XPC services * Use the runtime to get the protocol * Make NSXpcInterface.CreateForProtocol() public The static registrar must be used for Cocoa to accept the protocol as a valid XPC interface, but that then seems to break resolving the protocol from the type. I must therefore hard-code the protocol name in my code, and that requires I make this constructor public. * Add XpcInterfaceAttribute See the doc comment in XpcInterfaceAttribute.cs for why this type is required. The referenced mmp optimizations will be added in future commits. * Add XpcInterfaceAttribute to generator build * Add support for XpcInterfaceAttribute to the generator * Force static generation of protocols decorated with XpcInterfaceAttribute * Change how static registrar translates block parameters Previously, they would always be marshalled as "id". This would throw off the XPC subsystem, which parses the block signature to determine the communication protocol. * Undo whitespace noise * Remove unneeded casts * Add trailing comma * Use HasAttribute instead of GetCustomAttribute * Fix style issues * Bind NSXpcConnection.auditSessionIdentifier * Address naming feedback * Make Get/SetAllowedClasses public IMHO, passing the selector as a string is just as usable as passing a MethodInfo, and is also less verbose if you copy/paste the selector string from the ExportAttribute. There is no reason why we cannot have both overloads be public. * Update overload names to match * Update more overload names to match * Make mmp --xpc imply --extension * Reformat if statement * Fix build * Conditionalize creation of PlugIns and XPCServices directories * Add AutoGeneratedName Co-Authored-By: Rolf Bjarne Kvinge <rolf@xamarin.com> * Get rid of ProtocolizeAttribute * Update availability attributes to please xharness I actually think xharness is wrong here, since the NSXPCConnection header lists these types as being available starting in macOS 10.8. * Update sharpie ignore files to reflect changes This should fix the xtro-sharpie test failures CI has been reporting. * Fix MM4105 error generation * Adjust error message in test to match mmp I had to change the error text slightly, because the type of the parameter cannot be determined where the error is thrown anymore. However, the newer exception message IMO is just as clear. * Make exception message match test exactly * Remove outdated copyright header text * Remove more outdated copyright header text * Revert changes to MM4105 error generation I have a more elegant way of fixing this test now. * Return "id" if Invoke method cannot be found This fixes the MM4105 error unit test, without requiring modification to that test. * Remove redundant availability attributes * Add DesignatedInitializerAttribute * Re-add required code to macOS-Foundation.ignore * Put DesignatedInitializer on the right constructor * Update xtro-sharpie ignore files
2019-10-22 16:38:01 +03:00
!missing-selector! NSXPCCoder::decodeXPCObjectOfType:forKey: not bound
!missing-selector! NSXPCCoder::encodeXPCObject:forKey: not bound
!missing-protocol-conformance! NSXPCConnection should conform to NSXPCProxyCreating
## unsorted
!extra-designated-initializer! NSScriptCommand::initWithCoder: is incorrectly decorated with an [DesignatedInitializer] attribute
!extra-protocol-member! unexpected selector NSURLSessionDelegate::URLSessionDidFinishEventsForBackgroundURLSession: found
!missing-enum! NSDistributedNotificationOptions not bound
!missing-enum! NSInsertionPosition not bound
!missing-enum! NSRelativePosition not bound
!missing-enum! NSSaveOptions not bound
!missing-enum! NSTestComparisonOperation not bound
!missing-enum! NSURLHandleStatus not bound
!missing-enum! NSWhoseSubelementIdentifier not bound
!missing-enum! NSXMLDocumentContentKind not bound
!missing-enum! NSXMLDTDNodeKind not bound
!missing-enum! NSXMLNodeKind not bound
!missing-enum! NSXMLNodeOptions not bound
!missing-field! NSAMPMDesignation not bound
!missing-field! NSAppleEventManagerWillProcessFirstEventNotification not bound
!missing-field! NSAppleEventTimeOutDefault not bound
!missing-field! NSAppleEventTimeOutNone not bound
!missing-field! NSAppleScriptErrorAppName not bound
!missing-field! NSAppleScriptErrorBriefMessage not bound
!missing-field! NSAppleScriptErrorMessage not bound
!missing-field! NSAppleScriptErrorNumber not bound
!missing-field! NSAppleScriptErrorRange not bound
!missing-field! NSClassDescriptionNeededForClassNotification not bound
!missing-field! NSConnectionDidDieNotification not bound
!missing-field! NSConnectionDidInitializeNotification not bound
!missing-field! NSCurrencySymbol not bound
!missing-field! NSDateFormatString not bound
!missing-field! NSDateTimeOrdering not bound
!missing-field! NSDeallocateZombies not bound
!missing-field! NSDebugEnabled not bound
!missing-field! NSDecimalDigits not bound
!missing-field! NSDecimalSeparator not bound
!missing-field! NSEarlierTimeDesignations not bound
!missing-field! NSEdgeInsetsZero not bound
!missing-field! NSFailedAuthenticationException not bound
!missing-field! NSFileManagerUnmountDissentingProcessIdentifierErrorKey not bound
!missing-field! NSFTPPropertyActiveTransferModeKey not bound
!missing-field! NSFTPPropertyFileOffsetKey not bound
!missing-field! NSFTPPropertyFTPProxy not bound
!missing-field! NSFTPPropertyUserLoginKey not bound
!missing-field! NSFTPPropertyUserPasswordKey not bound
!missing-field! NSGrammarCorrections not bound
!missing-field! NSGrammarRange not bound
!missing-field! NSGrammarUserDescription not bound
!missing-field! NSHourNameDesignations not bound
!missing-field! NSHTTPPropertyErrorPageDataKey not bound
!missing-field! NSHTTPPropertyHTTPProxy not bound
!missing-field! NSHTTPPropertyRedirectionHeadersKey not bound
!missing-field! NSHTTPPropertyServerHTTPVersionKey not bound
!missing-field! NSHTTPPropertyStatusCodeKey not bound
!missing-field! NSHTTPPropertyStatusReasonKey not bound
!missing-field! NSIntegerHashCallBacks not bound
!missing-field! NSIntegerMapKeyCallBacks not bound
!missing-field! NSIntegerMapValueCallBacks not bound
!missing-field! NSInternationalCurrencyString not bound
!missing-field! NSIntHashCallBacks not bound
!missing-field! NSKeepAllocationStatistics not bound
!missing-field! NSLaterTimeDesignations not bound
!missing-field! NSMetadataItemAttributeChangeDateKey not bound
!missing-field! NSMetadataQueryIndexedLocalComputerScope not bound
!missing-field! NSMetadataQueryIndexedNetworkScope not bound
!missing-field! NSMonthNameArray not bound
!missing-field! NSNegativeCurrencyFormatString not bound
!missing-field! NSNextDayDesignations not bound
!missing-field! NSNextNextDayDesignations not bound
!missing-field! NSOperationNotSupportedForKeyException not bound
!missing-field! NSPositiveCurrencyFormatString not bound
!missing-field! NSPriorDayDesignations not bound
!missing-field! NSShortDateFormatString not bound
!missing-field! NSShortMonthNameArray not bound
!missing-field! NSShortTimeDateFormatString not bound
!missing-field! NSShortWeekDayNameArray not bound
!missing-field! NSThisDayDesignations not bound
!missing-field! NSThousandsSeparator not bound
!missing-field! NSTimeDateFormatString not bound
!missing-field! NSTimeFormatString not bound
!missing-field! NSURLApplicationIsScriptableKey not bound
!missing-field! NSURLQuarantinePropertiesKey not bound
!missing-field! NSURLTagNamesKey not bound
!missing-field! NSURLThumbnailKey not bound
!missing-field! NSWeekDayNameArray not bound
!missing-field! NSYearMonthWeekDesignations not bound
!missing-field! NSZeroPoint not bound
!missing-field! NSZeroRect not bound
!missing-field! NSZeroSize not bound
!missing-field! NSZombieEnabled not bound
!missing-pinvoke! NSAllocateCollectable is not bound
!missing-pinvoke! NSContainsRect is not bound
!missing-pinvoke! NSCountFrames is not bound
!missing-pinvoke! NSDivideRect is not bound
!missing-pinvoke! NSEdgeInsetsEqual is not bound
!missing-pinvoke! NSEqualPoints is not bound
!missing-pinvoke! NSEqualRects is not bound
!missing-pinvoke! NSEqualSizes is not bound
!missing-pinvoke! NSFrameAddress is not bound
!missing-pinvoke! NSHFSTypeCodeFromFileType is not bound
!missing-pinvoke! NSHFSTypeOfFile is not bound
!missing-pinvoke! NSInsetRect is not bound
!missing-pinvoke! NSIntegralRect is not bound
!missing-pinvoke! NSIntegralRectWithOptions is not bound
!missing-pinvoke! NSIntersectionRect is not bound
!missing-pinvoke! NSIntersectsRect is not bound
!missing-pinvoke! NSIsEmptyRect is not bound
!missing-pinvoke! NSIsFreedObject is not bound
!missing-pinvoke! NSMouseInRect is not bound
!missing-pinvoke! NSOffsetRect is not bound
!missing-pinvoke! NSPointFromString is not bound
!missing-pinvoke! NSPointInRect is not bound
!missing-pinvoke! NSReallocateCollectable is not bound
!missing-pinvoke! NSRecordAllocationEvent is not bound
!missing-pinvoke! NSRectFromString is not bound
!missing-pinvoke! NSReturnAddress is not bound
!missing-pinvoke! NSSizeFromString is not bound
!missing-pinvoke! NSStringFromPoint is not bound
!missing-pinvoke! NSStringFromRect is not bound
!missing-pinvoke! NSStringFromSize is not bound
!missing-pinvoke! NSUnionRect is not bound
!missing-protocol! NSSpellServerDelegate not bound
!missing-protocol! NSURLHandleClient not bound
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldCopyItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldLinkItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldMoveItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldProceedAfterError:copyingItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldProceedAfterError:linkingItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldProceedAfterError:movingItemAtURL:toURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldProceedAfterError:removingItemAtURL: not found
!missing-protocol-member! NSFileManagerDelegate::fileManager:shouldRemoveItemAtURL: not found
!missing-protocol-member! NSURLDownloadDelegate::download:canAuthenticateAgainstProtectionSpace: not found
!missing-protocol-member! NSURLDownloadDelegate::downloadShouldUseCredentialStorage: not found
!missing-selector! +NSAppleEventDescriptor::appleEventWithEventClass:eventID:targetDescriptor:returnID:transactionID: not bound
!missing-selector! +NSAppleEventDescriptor::descriptorWithDescriptorType:bytes:length: not bound
!missing-selector! +NSAppleEventDescriptor::descriptorWithDescriptorType:data: not bound
!missing-selector! +NSArchiver::archivedDataWithRootObject: not bound
!missing-selector! +NSArchiver::archiveRootObject:toFile: not bound
!missing-selector! +NSCalendarDate::dateWithString:calendarFormat: not bound
!missing-selector! +NSCalendarDate::dateWithString:calendarFormat:locale: not bound
!missing-selector! +NSCalendarDate::dateWithYear:month:day:hour:minute:second:timeZone: not bound
!missing-selector! +NSClassDescription::classDescriptionForClass: not bound
!missing-selector! +NSClassDescription::registerClassDescription:forClass: not bound
!missing-selector! +NSDate::dateWithNaturalLanguageString: not bound
!missing-selector! +NSDate::dateWithNaturalLanguageString:locale: not bound
!missing-selector! +NSDate::dateWithString: not bound
!missing-selector! +NSDistantObject::proxyWithLocal:connection: not bound
!missing-selector! +NSDistantObject::proxyWithTarget:connection: not bound
!missing-selector! +NSHost::setHostCacheEnabled: not bound
!missing-selector! +NSMutableCharacterSet::characterSetWithBitmapRepresentation: not bound
!missing-selector! +NSMutableCharacterSet::characterSetWithCharactersInString: not bound
!missing-selector! +NSMutableCharacterSet::characterSetWithContentsOfFile: not bound
!missing-selector! +NSMutableCharacterSet::characterSetWithRange: not bound
!missing-selector! +NSProtocolChecker::protocolCheckerWithTarget:protocol: not bound
!missing-selector! +NSScriptClassDescription::classDescriptionForClass: not bound
!missing-selector! +NSScriptObjectSpecifier::objectSpecifierWithDescriptor: not bound
!missing-selector! +NSScriptSuiteRegistry::setSharedScriptSuiteRegistry: not bound
!missing-selector! +NSStream::getStreamsToHost:port:inputStream:outputStream: not bound
!missing-selector! +NSTask::launchedTaskWithExecutableURL:arguments:error:terminationHandler: not bound
!missing-selector! +NSUnarchiver::classNameDecodedForArchiveClassName: not bound
!missing-selector! +NSUnarchiver::decodeClassName:asClassName: not bound
!missing-selector! +NSUnarchiver::unarchiveObjectWithData: not bound
!missing-selector! +NSUnarchiver::unarchiveObjectWithFile: not bound
!missing-selector! +NSURLConnection::sendSynchronousRequest:returningResponse:error: not bound
!missing-selector! +NSURLHandle::cachedHandleForURL: not bound
!missing-selector! +NSURLHandle::canInitWithURL: not bound
!missing-selector! +NSURLHandle::registerURLHandleClass: not bound
!missing-selector! +NSURLHandle::URLHandleClassForURL: not bound
!missing-selector! +NSValue::valueWithEdgeInsets: not bound
!missing-selector! +NSXMLDocument::replacementClassForClass: not bound
!missing-selector! +NSXMLDTD::predefinedEntityDeclarationForName: not bound
!missing-selector! +NSXMLNode::attributeWithName:stringValue: not bound
!missing-selector! +NSXMLNode::attributeWithName:URI:stringValue: not bound
!missing-selector! +NSXMLNode::commentWithStringValue: not bound
!missing-selector! +NSXMLNode::documentWithRootElement: not bound
!missing-selector! +NSXMLNode::DTDNodeWithXMLString: not bound
!missing-selector! +NSXMLNode::elementWithName: not bound
!missing-selector! +NSXMLNode::elementWithName:children:attributes: not bound
!missing-selector! +NSXMLNode::elementWithName:stringValue: not bound
!missing-selector! +NSXMLNode::elementWithName:URI: not bound
!missing-selector! +NSXMLNode::localNameForName: not bound
!missing-selector! +NSXMLNode::namespaceWithName:stringValue: not bound
!missing-selector! +NSXMLNode::predefinedNamespaceForPrefix: not bound
!missing-selector! +NSXMLNode::prefixForName: not bound
!missing-selector! +NSXMLNode::processingInstructionWithName:stringValue: not bound
!missing-selector! +NSXMLNode::textWithStringValue: not bound
!missing-selector! NSAppleEventDescriptor::aeDesc not bound
!missing-selector! NSAppleEventDescriptor::coerceToDescriptorType: not bound
!missing-selector! NSAppleEventDescriptor::descriptorType not bound
!missing-selector! NSAppleEventDescriptor::initWithAEDescNoCopy: not bound
!missing-selector! NSAppleEventDescriptor::initWithDescriptorType:bytes:length: not bound
!missing-selector! NSAppleEventDescriptor::initWithDescriptorType:data: not bound
!missing-selector! NSAppleEventDescriptor::initWithEventClass:eventID:targetDescriptor:returnID:transactionID: not bound
!missing-selector! NSAppleEventDescriptor::returnID not bound
!missing-selector! NSAppleEventDescriptor::transactionID not bound
!missing-selector! NSAppleEventManager::dispatchRawAppleEvent:withRawReply:handlerRefCon: not bound
!missing-selector! NSArchiver::archiverData not bound
!missing-selector! NSArchiver::classNameEncodedForTrueClassName: not bound
!missing-selector! NSArchiver::encodeClassName:intoClassName: not bound
!missing-selector! NSArchiver::encodeConditionalObject: not bound
!missing-selector! NSArchiver::encodeRootObject: not bound
!missing-selector! NSArchiver::initForWritingWithMutableData: not bound
!missing-selector! NSArchiver::replaceObject:withObject: not bound
!missing-selector! NSCalendarDate::years:months:days:hours:minutes:seconds:sinceDate: not bound
!missing-selector! NSClassDescription::attributeKeys not bound
!missing-selector! NSClassDescription::inverseForRelationshipKey: not bound
!missing-selector! NSClassDescription::toManyRelationshipKeys not bound
!missing-selector! NSClassDescription::toOneRelationshipKeys not bound
!missing-selector! NSCloneCommand::keySpecifier not bound
!missing-selector! NSCloneCommand::setReceiversSpecifier: not bound
!missing-selector! NSCloseCommand::saveOptions not bound
!missing-selector! NSCoder::decodePointForKey: not bound
!missing-selector! NSCoder::decodeRectForKey: not bound
!missing-selector! NSCoder::decodeSizeForKey: not bound
!missing-selector! NSCoder::encodePoint: not bound
!missing-selector! NSCoder::encodePoint:forKey: not bound
!missing-selector! NSCoder::encodePropertyList: not bound
!missing-selector! NSCoder::encodeRect: not bound
!missing-selector! NSCoder::encodeRect:forKey: not bound
!missing-selector! NSCoder::encodeSize: not bound
!missing-selector! NSCoder::encodeSize:forKey: not bound
!missing-selector! NSConnection::initWithReceivePort:sendPort: not bound
!missing-selector! NSConnection::multipleThreadsEnabled not bound
!missing-selector! NSCreateCommand::createClassDescription not bound
!missing-selector! NSCreateCommand::resolvedKeyDictionary not bound
!missing-selector! NSDate::dateWithCalendarFormat:timeZone: not bound
!missing-selector! NSDate::descriptionWithCalendarFormat:timeZone:locale: not bound
!missing-selector! NSDate::initWithString: not bound
!missing-selector! NSDateFormatter::initWithDateFormat:allowNaturalLanguage: not bound
!missing-selector! NSDeleteCommand::keySpecifier not bound
!missing-selector! NSDeleteCommand::setReceiversSpecifier: not bound
!missing-selector! NSDirectoryEnumerator::level not bound
!missing-selector! NSDistantObject::connectionForProxy not bound
!missing-selector! NSDistantObject::initWithCoder: not bound
!missing-selector! NSDistantObject::initWithLocal:connection: not bound
!missing-selector! NSDistantObject::initWithTarget:connection: not bound
!missing-selector! NSDistantObject::setProtocolForProxy: not bound
!missing-selector! NSFileProviderService::getFileProviderConnectionWithCompletionHandler: not bound
!missing-selector! NSFileWrapper::addFileWithPath: not bound
!missing-selector! NSFileWrapper::addSymbolicLinkWithDestination:preferredFilename: not bound
!missing-selector! NSFileWrapper::initSymbolicLinkWithDestination: not bound
!missing-selector! NSFileWrapper::initWithPath: not bound
!missing-selector! NSFileWrapper::needsToBeUpdatedFromPath: not bound
!missing-selector! NSFileWrapper::updateFromPath: not bound
!missing-selector! NSFileWrapper::writeToFile:atomically:updateFilenames: not bound
!missing-selector! NSGarbageCollector::disableCollectorForPointer: not bound
!missing-selector! NSGarbageCollector::enableCollectorForPointer: not bound
!missing-selector! NSIndexSpecifier::index not bound
!missing-selector! NSIndexSpecifier::initWithContainerClassDescription:containerSpecifier:key:index: not bound
!missing-selector! NSIndexSpecifier::setIndex: not bound
!missing-selector! NSLogicalTest::initAndTestWithTests: not bound
!missing-selector! NSLogicalTest::initNotTestWithTest: not bound
!missing-selector! NSLogicalTest::initOrTestWithTests: not bound
!missing-selector! NSMachBootstrapServer::portForName: not bound
!missing-selector! NSMachBootstrapServer::portForName:host: not bound
!missing-selector! NSMachBootstrapServer::registerPort:name: not bound
!missing-selector! NSMachBootstrapServer::servicePortWithName: not bound
!missing-selector! NSMessagePortNameServer::portForName: not bound
!missing-selector! NSMessagePortNameServer::portForName:host: not bound
!missing-selector! NSMoveCommand::keySpecifier not bound
!missing-selector! NSMoveCommand::setReceiversSpecifier: not bound
!missing-selector! NSMutableCharacterSet::addCharactersInRange: not bound
!missing-selector! NSNameSpecifier::initWithCoder: not bound
!missing-selector! NSNameSpecifier::initWithContainerClassDescription:containerSpecifier:key:name: not bound
!missing-selector! NSNameSpecifier::name not bound
!missing-selector! NSNameSpecifier::setName: not bound
!missing-selector! NSNumberFormatter::attributedStringForNil not bound
!missing-selector! NSNumberFormatter::attributedStringForNotANumber not bound
!missing-selector! NSNumberFormatter::attributedStringForZero not bound
!missing-selector! NSNumberFormatter::format not bound
!missing-selector! NSNumberFormatter::hasThousandSeparators not bound
!missing-selector! NSNumberFormatter::localizesFormat not bound
!missing-selector! NSNumberFormatter::roundingBehavior not bound
!missing-selector! NSNumberFormatter::setAttributedStringForNil: not bound
!missing-selector! NSNumberFormatter::setAttributedStringForNotANumber: not bound
!missing-selector! NSNumberFormatter::setAttributedStringForZero: not bound
!missing-selector! NSNumberFormatter::setFormat: not bound
!missing-selector! NSNumberFormatter::setHasThousandSeparators: not bound
!missing-selector! NSNumberFormatter::setLocalizesFormat: not bound
!missing-selector! NSNumberFormatter::setRoundingBehavior: not bound
!missing-selector! NSNumberFormatter::setThousandSeparator: not bound
!missing-selector! NSNumberFormatter::thousandSeparator not bound
!missing-selector! NSObject::attributeKeys not bound
!missing-selector! NSObject::classCode not bound
!missing-selector! NSObject::classDescription not bound
!missing-selector! NSObject::classForArchiver not bound
!missing-selector! NSObject::classForPortCoder not bound
!missing-selector! NSObject::className not bound
!missing-selector! NSObject::coerceValue:forKey: not bound
!missing-selector! NSObject::copyScriptingValue:forKey:withProperties: not bound
!missing-selector! NSObject::doesContain: not bound
!missing-selector! NSObject::indicesOfObjectsByEvaluatingObjectSpecifier: not bound
!missing-selector! NSObject::insertValue:atIndex:inPropertyWithKey: not bound
!missing-selector! NSObject::insertValue:inPropertyWithKey: not bound
!missing-selector! NSObject::inverseForRelationshipKey: not bound
!missing-selector! NSObject::isCaseInsensitiveLike: not bound
!missing-selector! NSObject::isEqualTo: not bound
!missing-selector! NSObject::isGreaterThan: not bound
!missing-selector! NSObject::isGreaterThanOrEqualTo: not bound
!missing-selector! NSObject::isLessThan: not bound
!missing-selector! NSObject::isLessThanOrEqualTo: not bound
!missing-selector! NSObject::isLike: not bound
!missing-selector! NSObject::isNotEqualTo: not bound
!missing-selector! NSObject::newScriptingObjectOfClass:forValueForKey:withContentsValue:properties: not bound
!missing-selector! NSObject::objectSpecifier not bound
!missing-selector! NSObject::removeValueAtIndex:fromPropertyWithKey: not bound
!missing-selector! NSObject::replacementObjectForArchiver: not bound
!missing-selector! NSObject::replacementObjectForPortCoder: not bound
!missing-selector! NSObject::replaceValueAtIndex:inPropertyWithKey:withValue: not bound
!missing-selector! NSObject::scriptingBeginsWith: not bound
!missing-selector! NSObject::scriptingContains: not bound
!missing-selector! NSObject::scriptingEndsWith: not bound
!missing-selector! NSObject::scriptingIsEqualTo: not bound
!missing-selector! NSObject::scriptingIsGreaterThan: not bound
!missing-selector! NSObject::scriptingIsGreaterThanOrEqualTo: not bound
!missing-selector! NSObject::scriptingIsLessThan: not bound
!missing-selector! NSObject::scriptingIsLessThanOrEqualTo: not bound
!missing-selector! NSObject::scriptingProperties not bound
!missing-selector! NSObject::scriptingValueForSpecifier: not bound
!missing-selector! NSObject::setScriptingProperties: not bound
!missing-selector! NSObject::toManyRelationshipKeys not bound
!missing-selector! NSObject::toOneRelationshipKeys not bound
!missing-selector! NSObject::valueAtIndex:inPropertyWithKey: not bound
!missing-selector! NSObject::valueWithName:inPropertyWithKey: not bound
!missing-selector! NSObject::valueWithUniqueID:inPropertyWithKey: not bound
!missing-selector! NSPort::addConnection:toRunLoop:forMode: not bound
!missing-selector! NSPort::removeConnection:fromRunLoop:forMode: not bound
!missing-selector! NSPortCoder::encodePortObject: not bound
!missing-selector! NSPositionalSpecifier::initWithPosition:objectSpecifier: not bound
!missing-selector! NSPositionalSpecifier::insertionContainer not bound
!missing-selector! NSPositionalSpecifier::insertionIndex not bound
!missing-selector! NSPositionalSpecifier::insertionKey not bound
!missing-selector! NSPositionalSpecifier::insertionReplaces not bound
!missing-selector! NSPositionalSpecifier::objectSpecifier not bound
!missing-selector! NSPositionalSpecifier::position not bound
!missing-selector! NSPositionalSpecifier::setInsertionClassDescription: not bound
!missing-selector! NSProtocolChecker::initWithTarget:protocol: not bound
!missing-selector! NSProtocolChecker::protocol not bound
!missing-selector! NSProtocolChecker::target not bound
!missing-selector! NSQuitCommand::saveOptions not bound
!missing-selector! NSRangeSpecifier::endSpecifier not bound
!missing-selector! NSRangeSpecifier::initWithCoder: not bound
!missing-selector! NSRangeSpecifier::initWithContainerClassDescription:containerSpecifier:key:startSpecifier:endSpecifier: not bound
!missing-selector! NSRangeSpecifier::setEndSpecifier: not bound
!missing-selector! NSRangeSpecifier::setStartSpecifier: not bound
!missing-selector! NSRangeSpecifier::startSpecifier not bound
!missing-selector! NSRelativeSpecifier::baseSpecifier not bound
!missing-selector! NSRelativeSpecifier::initWithCoder: not bound
!missing-selector! NSRelativeSpecifier::initWithContainerClassDescription:containerSpecifier:key:relativePosition:baseSpecifier: not bound
!missing-selector! NSRelativeSpecifier::relativePosition not bound
!missing-selector! NSRelativeSpecifier::setBaseSpecifier: not bound
!missing-selector! NSRelativeSpecifier::setRelativePosition: not bound
!missing-selector! NSScriptClassDescription::appleEventCode not bound
!missing-selector! NSScriptClassDescription::appleEventCodeForKey: not bound
!missing-selector! NSScriptClassDescription::classDescriptionForKey: not bound
!missing-selector! NSScriptClassDescription::className not bound
!missing-selector! NSScriptClassDescription::defaultSubcontainerAttributeKey not bound
!missing-selector! NSScriptClassDescription::hasOrderedToManyRelationshipForKey: not bound
!missing-selector! NSScriptClassDescription::hasPropertyForKey: not bound
!missing-selector! NSScriptClassDescription::hasReadablePropertyForKey: not bound
!missing-selector! NSScriptClassDescription::hasWritablePropertyForKey: not bound
!missing-selector! NSScriptClassDescription::implementationClassName not bound
!missing-selector! NSScriptClassDescription::initWithSuiteName:className:dictionary: not bound
!missing-selector! NSScriptClassDescription::isLocationRequiredToCreateForKey: not bound
!missing-selector! NSScriptClassDescription::isReadOnlyKey: not bound
!missing-selector! NSScriptClassDescription::keyWithAppleEventCode: not bound
!missing-selector! NSScriptClassDescription::matchesAppleEventCode: not bound
!missing-selector! NSScriptClassDescription::selectorForCommand: not bound
!missing-selector! NSScriptClassDescription::suiteName not bound
!missing-selector! NSScriptClassDescription::superclassDescription not bound
!missing-selector! NSScriptClassDescription::supportsCommand: not bound
!missing-selector! NSScriptClassDescription::typeForKey: not bound
!missing-selector! NSScriptCoercionHandler::coerceValue:toClass: not bound
!missing-selector! NSScriptCoercionHandler::registerCoercer:selector:toConvertFromClass:toClass: not bound
!missing-selector! NSScriptCommand::arguments not bound
!missing-selector! NSScriptCommand::commandDescription not bound
!missing-selector! NSScriptCommand::directParameter not bound
!missing-selector! NSScriptCommand::evaluatedArguments not bound
!missing-selector! NSScriptCommand::isWellFormed not bound
!missing-selector! NSScriptCommand::receiversSpecifier not bound
!missing-selector! NSScriptCommand::resumeExecutionWithResult: not bound
!missing-selector! NSScriptCommand::scriptErrorExpectedTypeDescriptor not bound
!missing-selector! NSScriptCommand::scriptErrorNumber not bound
!missing-selector! NSScriptCommand::scriptErrorOffendingObjectDescriptor not bound
!missing-selector! NSScriptCommand::scriptErrorString not bound
!missing-selector! NSScriptCommand::setArguments: not bound
!missing-selector! NSScriptCommand::setDirectParameter: not bound
!missing-selector! NSScriptCommand::setReceiversSpecifier: not bound
!missing-selector! NSScriptCommand::setScriptErrorExpectedTypeDescriptor: not bound
!missing-selector! NSScriptCommand::setScriptErrorNumber: not bound
!missing-selector! NSScriptCommand::setScriptErrorOffendingObjectDescriptor: not bound
!missing-selector! NSScriptCommand::setScriptErrorString: not bound
!missing-selector! NSScriptCommandDescription::createCommandInstanceWithZone: not bound
!missing-selector! NSScriptExecutionContext::objectBeingTested not bound
!missing-selector! NSScriptExecutionContext::rangeContainerObject not bound
!missing-selector! NSScriptExecutionContext::setObjectBeingTested: not bound
!missing-selector! NSScriptExecutionContext::setRangeContainerObject: not bound
!missing-selector! NSScriptExecutionContext::setTopLevelObject: not bound
!missing-selector! NSScriptExecutionContext::topLevelObject not bound
!missing-selector! NSScriptObjectSpecifier::childSpecifier not bound
!missing-selector! NSScriptObjectSpecifier::containerClassDescription not bound
!missing-selector! NSScriptObjectSpecifier::containerIsObjectBeingTested not bound
!missing-selector! NSScriptObjectSpecifier::containerIsRangeContainerObject not bound
!missing-selector! NSScriptObjectSpecifier::containerSpecifier not bound
!missing-selector! NSScriptObjectSpecifier::descriptor not bound
!missing-selector! NSScriptObjectSpecifier::evaluationErrorNumber not bound
!missing-selector! NSScriptObjectSpecifier::evaluationErrorSpecifier not bound
!missing-selector! NSScriptObjectSpecifier::indicesOfObjectsByEvaluatingWithContainer:count: not bound
!missing-selector! NSScriptObjectSpecifier::initWithCoder: not bound
!missing-selector! NSScriptObjectSpecifier::initWithContainerClassDescription:containerSpecifier:key: not bound
!missing-selector! NSScriptObjectSpecifier::initWithContainerSpecifier:key: not bound
!missing-selector! NSScriptObjectSpecifier::key not bound
!missing-selector! NSScriptObjectSpecifier::keyClassDescription not bound
!missing-selector! NSScriptObjectSpecifier::objectsByEvaluatingSpecifier not bound
!missing-selector! NSScriptObjectSpecifier::objectsByEvaluatingWithContainers: not bound
!missing-selector! NSScriptObjectSpecifier::setChildSpecifier: not bound
!missing-selector! NSScriptObjectSpecifier::setContainerClassDescription: not bound
!missing-selector! NSScriptObjectSpecifier::setContainerIsObjectBeingTested: not bound
!missing-selector! NSScriptObjectSpecifier::setContainerIsRangeContainerObject: not bound
!missing-selector! NSScriptObjectSpecifier::setContainerSpecifier: not bound
!missing-selector! NSScriptObjectSpecifier::setEvaluationErrorNumber: not bound
!missing-selector! NSScriptObjectSpecifier::setKey: not bound
!missing-selector! NSScriptSuiteRegistry::aeteResource: not bound
!missing-selector! NSScriptSuiteRegistry::appleEventCodeForSuite: not bound
!missing-selector! NSScriptSuiteRegistry::bundleForSuite: not bound
!missing-selector! NSScriptSuiteRegistry::classDescriptionsInSuite: not bound
!missing-selector! NSScriptSuiteRegistry::classDescriptionWithAppleEventCode: not bound
!missing-selector! NSScriptSuiteRegistry::commandDescriptionsInSuite: not bound
!missing-selector! NSScriptSuiteRegistry::commandDescriptionWithAppleEventClass:andAppleEventCode: not bound
!missing-selector! NSScriptSuiteRegistry::loadSuitesFromBundle: not bound
!missing-selector! NSScriptSuiteRegistry::loadSuiteWithDictionary:fromBundle: not bound
!missing-selector! NSScriptSuiteRegistry::registerClassDescription: not bound
!missing-selector! NSScriptSuiteRegistry::registerCommandDescription: not bound
!missing-selector! NSScriptSuiteRegistry::suiteForAppleEventCode: not bound
!missing-selector! NSScriptSuiteRegistry::suiteNames not bound
!missing-selector! NSScriptWhoseTest::initWithCoder: not bound
!missing-selector! NSSetCommand::keySpecifier not bound
!missing-selector! NSSetCommand::setReceiversSpecifier: not bound
!missing-selector! NSSocketPort::address not bound
!missing-selector! NSSocketPort::initRemoteWithProtocolFamily:socketType:protocol:address: not bound
!missing-selector! NSSocketPort::initRemoteWithTCPPort:host: not bound
!missing-selector! NSSocketPort::initWithProtocolFamily:socketType:protocol:address: not bound
!missing-selector! NSSocketPort::initWithProtocolFamily:socketType:protocol:socket: not bound
!missing-selector! NSSocketPort::initWithTCPPort: not bound
!missing-selector! NSSocketPort::protocol not bound
!missing-selector! NSSocketPort::protocolFamily not bound
!missing-selector! NSSocketPort::socket not bound
!missing-selector! NSSocketPort::socketType not bound
!missing-selector! NSSocketPortNameServer::defaultNameServerPortNumber not bound
!missing-selector! NSSocketPortNameServer::portForName: not bound
!missing-selector! NSSocketPortNameServer::portForName:host: not bound
!missing-selector! NSSocketPortNameServer::portForName:host:nameServerPortNumber: not bound
!missing-selector! NSSocketPortNameServer::registerPort:name: not bound
!missing-selector! NSSocketPortNameServer::registerPort:name:nameServerPortNumber: not bound
!missing-selector! NSSocketPortNameServer::removePortForName: not bound
!missing-selector! NSSocketPortNameServer::setDefaultNameServerPortNumber: not bound
!missing-selector! NSSpecifierTest::initWithCoder: not bound
!missing-selector! NSSpecifierTest::initWithObjectSpecifier:comparisonOperator:testObject: not bound
!missing-selector! NSSpellServer::delegate not bound
!missing-selector! NSSpellServer::isWordInUserDictionaries:caseSensitive: not bound
!missing-selector! NSSpellServer::registerLanguage:byVendor: not bound
!missing-selector! NSSpellServer::setDelegate: not bound
!missing-selector! NSTask::currentDirectoryURL not bound
!missing-selector! NSTask::executableURL not bound
!missing-selector! NSTask::launchAndReturnError: not bound
!missing-selector! NSTask::qualityOfService not bound
!missing-selector! NSTask::setCurrentDirectoryURL: not bound
!missing-selector! NSTask::setExecutableURL: not bound
!missing-selector! NSTask::setQualityOfService: not bound
!missing-selector! NSTask::setTerminationHandler: not bound
!missing-selector! NSTask::terminationHandler not bound
!missing-selector! NSUnarchiver::classNameDecodedForArchiveClassName: not bound
!missing-selector! NSUnarchiver::decodeClassName:asClassName: not bound
!missing-selector! NSUnarchiver::initForReadingWithData: not bound
!missing-selector! NSUnarchiver::isAtEnd not bound
!missing-selector! NSUnarchiver::replaceObject:withObject: not bound
!missing-selector! NSUnarchiver::setObjectZone: not bound
!missing-selector! NSUnarchiver::systemVersion not bound
!missing-selector! NSUniqueIDSpecifier::initWithCoder: not bound
!missing-selector! NSUniqueIDSpecifier::initWithContainerClassDescription:containerSpecifier:key:uniqueID: not bound
!missing-selector! NSUniqueIDSpecifier::setUniqueID: not bound
!missing-selector! NSUniqueIDSpecifier::uniqueID not bound
!missing-selector! NSURLConnection::currentRequest not bound
!missing-selector! NSURLConnection::originalRequest not bound
!missing-selector! NSURLHandle::addClient: not bound
!missing-selector! NSURLHandle::backgroundLoadDidFailWithReason: not bound
!missing-selector! NSURLHandle::didLoadBytes:loadComplete: not bound
!missing-selector! NSURLHandle::initWithURL:cached: not bound
!missing-selector! NSURLHandle::propertyForKey: not bound
!missing-selector! NSURLHandle::propertyForKeyIfAvailable: not bound
!missing-selector! NSURLHandle::removeClient: not bound
!missing-selector! NSURLHandle::writeData: not bound
!missing-selector! NSURLHandle::writeProperty:forKey: not bound
!missing-selector! NSUserAppleScriptTask::executeWithAppleEvent:completionHandler: not bound
!missing-selector! NSUserAutomatorTask::executeWithInput:completionHandler: not bound
!missing-selector! NSUserAutomatorTask::setVariables: not bound
!missing-selector! NSUserAutomatorTask::variables not bound
!missing-selector! NSUserScriptTask::executeWithCompletionHandler: not bound
!missing-selector! NSUserScriptTask::initWithURL:error: not bound
!missing-selector! NSUserScriptTask::scriptURL not bound
!missing-selector! NSUserUnixTask::executeWithArguments:completionHandler: not bound
!missing-selector! NSUserUnixTask::setStandardError: not bound
!missing-selector! NSUserUnixTask::setStandardInput: not bound
!missing-selector! NSUserUnixTask::setStandardOutput: not bound
!missing-selector! NSUserUnixTask::standardError not bound
!missing-selector! NSUserUnixTask::standardInput not bound
!missing-selector! NSUserUnixTask::standardOutput not bound
!missing-selector! NSValue::edgeInsetsValue not bound
!missing-selector! NSWhoseSpecifier::endSubelementIdentifier not bound
!missing-selector! NSWhoseSpecifier::endSubelementIndex not bound
!missing-selector! NSWhoseSpecifier::initWithCoder: not bound
!missing-selector! NSWhoseSpecifier::initWithContainerClassDescription:containerSpecifier:key:test: not bound
!missing-selector! NSWhoseSpecifier::setEndSubelementIdentifier: not bound
!missing-selector! NSWhoseSpecifier::setEndSubelementIndex: not bound
!missing-selector! NSWhoseSpecifier::setStartSubelementIdentifier: not bound
!missing-selector! NSWhoseSpecifier::setStartSubelementIndex: not bound
!missing-selector! NSWhoseSpecifier::setTest: not bound
!missing-selector! NSWhoseSpecifier::startSubelementIdentifier not bound
!missing-selector! NSWhoseSpecifier::startSubelementIndex not bound
!missing-selector! NSWhoseSpecifier::test not bound
!missing-selector! NSXMLDocument::addChild: not bound
!missing-selector! NSXMLDocument::characterEncoding not bound
!missing-selector! NSXMLDocument::documentContentKind not bound
!missing-selector! NSXMLDocument::DTD not bound
!missing-selector! NSXMLDocument::initWithContentsOfURL:options:error: not bound
!missing-selector! NSXMLDocument::initWithData:options:error: not bound
!missing-selector! NSXMLDocument::initWithRootElement: not bound
!missing-selector! NSXMLDocument::initWithXMLString:options:error: not bound
!missing-selector! NSXMLDocument::insertChild:atIndex: not bound
!missing-selector! NSXMLDocument::insertChildren:atIndex: not bound
!missing-selector! NSXMLDocument::isStandalone not bound
!missing-selector! NSXMLDocument::MIMEType not bound
!missing-selector! NSXMLDocument::objectByApplyingXSLT:arguments:error: not bound
!missing-selector! NSXMLDocument::objectByApplyingXSLTAtURL:arguments:error: not bound
!missing-selector! NSXMLDocument::objectByApplyingXSLTString:arguments:error: not bound
!missing-selector! NSXMLDocument::removeChildAtIndex: not bound
!missing-selector! NSXMLDocument::replaceChildAtIndex:withNode: not bound
!missing-selector! NSXMLDocument::setCharacterEncoding: not bound
!missing-selector! NSXMLDocument::setChildren: not bound
!missing-selector! NSXMLDocument::setDocumentContentKind: not bound
!missing-selector! NSXMLDocument::setDTD: not bound
!missing-selector! NSXMLDocument::setMIMEType: not bound
!missing-selector! NSXMLDocument::setRootElement: not bound
!missing-selector! NSXMLDocument::setStandalone: not bound
!missing-selector! NSXMLDocument::setVersion: not bound
!missing-selector! NSXMLDocument::validateAndReturnError: not bound
!missing-selector! NSXMLDocument::version not bound
!missing-selector! NSXMLDocument::XMLData not bound
!missing-selector! NSXMLDocument::XMLDataWithOptions: not bound
!missing-selector! NSXMLDTD::addChild: not bound
!missing-selector! NSXMLDTD::attributeDeclarationForName:elementName: not bound
!missing-selector! NSXMLDTD::elementDeclarationForName: not bound
!missing-selector! NSXMLDTD::entityDeclarationForName: not bound
!missing-selector! NSXMLDTD::initWithContentsOfURL:options:error: not bound
!missing-selector! NSXMLDTD::initWithData:options:error: not bound
!missing-selector! NSXMLDTD::insertChild:atIndex: not bound
!missing-selector! NSXMLDTD::insertChildren:atIndex: not bound
!missing-selector! NSXMLDTD::notationDeclarationForName: not bound
!missing-selector! NSXMLDTD::publicID not bound
!missing-selector! NSXMLDTD::removeChildAtIndex: not bound
!missing-selector! NSXMLDTD::replaceChildAtIndex:withNode: not bound
!missing-selector! NSXMLDTD::setChildren: not bound
!missing-selector! NSXMLDTD::setPublicID: not bound
!missing-selector! NSXMLDTD::setSystemID: not bound
!missing-selector! NSXMLDTD::systemID not bound
!missing-selector! NSXMLDTDNode::DTDKind not bound
!missing-selector! NSXMLDTDNode::initWithKind:options: not bound
!missing-selector! NSXMLDTDNode::initWithXMLString: not bound
!missing-selector! NSXMLDTDNode::isExternal not bound
!missing-selector! NSXMLDTDNode::notationName not bound
!missing-selector! NSXMLDTDNode::publicID not bound
!missing-selector! NSXMLDTDNode::setDTDKind: not bound
!missing-selector! NSXMLDTDNode::setNotationName: not bound
!missing-selector! NSXMLDTDNode::setPublicID: not bound
!missing-selector! NSXMLDTDNode::setSystemID: not bound
!missing-selector! NSXMLDTDNode::systemID not bound
!missing-selector! NSXMLElement::addAttribute: not bound
!missing-selector! NSXMLElement::addChild: not bound
!missing-selector! NSXMLElement::addNamespace: not bound
!missing-selector! NSXMLElement::attributeForLocalName:URI: not bound
!missing-selector! NSXMLElement::attributeForName: not bound
!missing-selector! NSXMLElement::attributes not bound
!missing-selector! NSXMLElement::elementsForLocalName:URI: not bound
!missing-selector! NSXMLElement::elementsForName: not bound
!missing-selector! NSXMLElement::initWithKind:options: not bound
!missing-selector! NSXMLElement::initWithName: not bound
!missing-selector! NSXMLElement::initWithName:stringValue: not bound
!missing-selector! NSXMLElement::initWithName:URI: not bound
!missing-selector! NSXMLElement::initWithXMLString:error: not bound
!missing-selector! NSXMLElement::insertChild:atIndex: not bound
!missing-selector! NSXMLElement::insertChildren:atIndex: not bound
!missing-selector! NSXMLElement::namespaceForPrefix: not bound
!missing-selector! NSXMLElement::namespaces not bound
!missing-selector! NSXMLElement::normalizeAdjacentTextNodesPreservingCDATA: not bound
!missing-selector! NSXMLElement::removeAttributeForName: not bound
!missing-selector! NSXMLElement::removeChildAtIndex: not bound
!missing-selector! NSXMLElement::removeNamespaceForPrefix: not bound
!missing-selector! NSXMLElement::replaceChildAtIndex:withNode: not bound
!missing-selector! NSXMLElement::resolveNamespaceForName: not bound
!missing-selector! NSXMLElement::resolvePrefixForNamespaceURI: not bound
!missing-selector! NSXMLElement::setAttributes: not bound
!missing-selector! NSXMLElement::setAttributesAsDictionary: not bound
!missing-selector! NSXMLElement::setAttributesWithDictionary: not bound
!missing-selector! NSXMLElement::setChildren: not bound
!missing-selector! NSXMLElement::setNamespaces: not bound
!missing-selector! NSXMLNode::canonicalXMLStringPreservingComments: not bound
!missing-selector! NSXMLNode::childAtIndex: not bound
!missing-selector! NSXMLNode::childCount not bound
!missing-selector! NSXMLNode::children not bound
!missing-selector! NSXMLNode::description not bound
!missing-selector! NSXMLNode::index not bound
!missing-selector! NSXMLNode::initWithKind: not bound
!missing-selector! NSXMLNode::initWithKind:options: not bound
!missing-selector! NSXMLNode::kind not bound
!missing-selector! NSXMLNode::level not bound
!missing-selector! NSXMLNode::localName not bound
!missing-selector! NSXMLNode::name not bound
!missing-selector! NSXMLNode::nextNode not bound
!missing-selector! NSXMLNode::nextSibling not bound
!missing-selector! NSXMLNode::nodesForXPath:error: not bound
!missing-selector! NSXMLNode::objectsForXQuery:constants:error: not bound
!missing-selector! NSXMLNode::objectsForXQuery:error: not bound
!missing-selector! NSXMLNode::objectValue not bound
!missing-selector! NSXMLNode::parent not bound
!missing-selector! NSXMLNode::prefix not bound
!missing-selector! NSXMLNode::previousNode not bound
!missing-selector! NSXMLNode::previousSibling not bound
!missing-selector! NSXMLNode::rootDocument not bound
!missing-selector! NSXMLNode::setName: not bound
!missing-selector! NSXMLNode::setObjectValue: not bound
!missing-selector! NSXMLNode::setStringValue: not bound
!missing-selector! NSXMLNode::setStringValue:resolvingEntities: not bound
!missing-selector! NSXMLNode::setURI: not bound
!missing-selector! NSXMLNode::stringValue not bound
!missing-selector! NSXMLNode::URI not bound
!missing-selector! NSXMLNode::XMLString not bound
!missing-selector! NSXMLNode::XMLStringWithOptions: not bound
!missing-selector! NSXMLNode::XPath not bound
!missing-type! NSArchiver not bound
!missing-type! NSClassDescription not bound
!missing-type! NSCloneCommand not bound
!missing-type! NSCloseCommand not bound
!missing-type! NSCountCommand not bound
!missing-type! NSCreateCommand not bound
!missing-type! NSDeleteCommand not bound
!missing-type! NSDistantObject not bound
!missing-type! NSExistsCommand not bound
!missing-type! NSGarbageCollector not bound
!missing-type! NSGetCommand not bound
!missing-type! NSIndexSpecifier not bound
!missing-type! NSLogicalTest not bound
!missing-type! NSMachBootstrapServer not bound
!missing-type! NSMessagePortNameServer not bound
!missing-type! NSMiddleSpecifier not bound
!missing-type! NSMoveCommand not bound
!missing-type! NSNameSpecifier not bound
!missing-type! NSPortCoder not bound
!missing-type! NSPositionalSpecifier not bound
!missing-type! NSPropertySpecifier not bound
!missing-type! NSProtocolChecker not bound
!missing-type! NSQuitCommand not bound
!missing-type! NSRandomSpecifier not bound
!missing-type! NSRangeSpecifier not bound
!missing-type! NSRelativeSpecifier not bound
!missing-type! NSScriptClassDescription not bound
!missing-type! NSScriptCoercionHandler not bound
!missing-type! NSScriptExecutionContext not bound
!missing-type! NSScriptObjectSpecifier not bound
!missing-type! NSScriptSuiteRegistry not bound
!missing-type! NSScriptWhoseTest not bound
!missing-type! NSSetCommand not bound
!missing-type! NSSocketPort not bound
!missing-type! NSSocketPortNameServer not bound
!missing-type! NSSpecifierTest not bound
!missing-type! NSSpellServer not bound
!missing-type! NSUnarchiver not bound
!missing-type! NSUniqueIDSpecifier not bound
!missing-type! NSURLHandle not bound
!missing-type! NSUserAppleScriptTask not bound
!missing-type! NSUserAutomatorTask not bound
!missing-type! NSUserScriptTask not bound
!missing-type! NSUserUnixTask not bound
!missing-type! NSWhoseSpecifier not bound
!missing-type! NSXMLDocument not bound
!missing-type! NSXMLDTD not bound
!missing-type! NSXMLDTDNode not bound
!missing-type! NSXMLElement not bound
!missing-type! NSXMLNode not bound
!unknown-field! NSExtensionJavaScriptFinalizeArgumentKey bound
!unknown-field! NSMetadataQueryLocalDocumentsScope bound
!unknown-native-enum! NSNotificationFlags bound
!unknown-native-enum! NSTextWritingDirection bound
## found after xtro fix
!missing-selector! +NSAffineTransform::transform not bound
!missing-selector! +NSAutoreleasePool::showPools not bound
!missing-selector! +NSCalendarDate::calendarDate not bound
!missing-selector! +NSCalendarDate::distantFuture not bound
!missing-selector! +NSCalendarDate::distantPast not bound
!missing-selector! +NSClassDescription::invalidateClassDescriptionCache not bound
!missing-selector! +NSConnection::defaultConnection not bound
!missing-selector! +NSGarbageCollector::defaultCollector not bound
!missing-selector! +NSHashTable::hashTableWithWeakObjects not bound
!missing-selector! +NSHost::flushHostCache not bound
!missing-selector! +NSHost::isHostCacheEnabled not bound
!missing-selector! +NSMachBootstrapServer::sharedInstance not bound
!missing-selector! +NSMapTable::mapTableWithStrongToStrongObjects not bound
!missing-selector! +NSMapTable::mapTableWithStrongToWeakObjects not bound
!missing-selector! +NSMapTable::mapTableWithWeakToStrongObjects not bound
!missing-selector! +NSMapTable::mapTableWithWeakToWeakObjects not bound
!missing-selector! +NSMessagePortNameServer::sharedInstance not bound
!missing-selector! +NSMutableCharacterSet::alphanumericCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::capitalizedLetterCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::controlCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::decimalDigitCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::decomposableCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::illegalCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::letterCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::lowercaseLetterCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::newlineCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::nonBaseCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::punctuationCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::symbolCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::uppercaseLetterCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::whitespaceAndNewlineCharacterSet not bound
!missing-selector! +NSMutableCharacterSet::whitespaceCharacterSet not bound
!missing-selector! +NSPointerArray::pointerArrayWithStrongObjects not bound
!missing-selector! +NSPointerArray::pointerArrayWithWeakObjects not bound
!missing-selector! +NSScriptCoercionHandler::sharedCoercionHandler not bound
!missing-selector! +NSScriptExecutionContext::sharedScriptExecutionContext not bound
!missing-selector! +NSScriptSuiteRegistry::sharedScriptSuiteRegistry not bound
!missing-selector! +NSSocketPortNameServer::sharedInstance not bound
!missing-selector! +NSXMLNode::document not bound
!missing-selector! NSCoder::decodePoint not bound
!missing-selector! NSCoder::decodePropertyList not bound
!missing-selector! NSCoder::decodeRect not bound
!missing-selector! NSCoder::decodeSize not bound
!missing-selector! NSConnection::enableMultipleThreads not bound
!missing-selector! NSDateFormatter::allowsNaturalLanguage not bound
!missing-selector! NSFileWrapper::symbolicLinkDestination not bound
!missing-selector! NSGarbageCollector::collectExhaustively not bound
!missing-selector! NSGarbageCollector::collectIfNeeded not bound
!missing-selector! NSGarbageCollector::disable not bound
!missing-selector! NSGarbageCollector::enable not bound
!missing-selector! NSGarbageCollector::isCollecting not bound
!missing-selector! NSGarbageCollector::isEnabled not bound
!missing-selector! NSGarbageCollector::zone not bound
!missing-selector! NSPortCoder::decodePortObject not bound
!missing-selector! NSPortCoder::isBycopy not bound
!missing-selector! NSPortCoder::isByref not bound
!missing-selector! NSPositionalSpecifier::evaluate not bound
!missing-selector! NSScriptCommand::performDefaultImplementation not bound
!missing-selector! NSScriptCommand::suspendExecution not bound
!missing-selector! NSScriptWhoseTest::init not bound
!missing-selector! NSScriptWhoseTest::isTrue not bound
!missing-selector! NSSocketPort::init not bound
!missing-selector! NSSpellServer::run not bound
!missing-selector! NSUnarchiver::objectZone not bound
!missing-selector! NSURLHandle::availableResourceData not bound
!missing-selector! NSURLHandle::beginLoadInBackground not bound
!missing-selector! NSURLHandle::cancelLoadInBackground not bound
!missing-selector! NSURLHandle::endLoadInBackground not bound
!missing-selector! NSURLHandle::expectedResourceDataSize not bound
!missing-selector! NSURLHandle::failureReason not bound
!missing-selector! NSURLHandle::flushCachedData not bound
!missing-selector! NSURLHandle::loadInBackground not bound
!missing-selector! NSURLHandle::loadInForeground not bound
!missing-selector! NSURLHandle::resourceData not bound
!missing-selector! NSURLHandle::status not bound
!missing-selector! NSXMLDocument::init not bound
!missing-selector! NSXMLDocument::rootElement not bound
!missing-selector! NSXMLDTD::init not bound
!missing-selector! NSXMLDTDNode::init not bound
!missing-selector! NSXMLNode::detach not bound
!missing-selector! NSXMLNode::init not bound