123456789101112131415161718192021222324252627282930313233 |
- #import "AppleSucksDOMImplementation.h"
- @implementation AppleSucksDOMImplementation
- -(BOOL) hasFeature:(NSString*) feature version:(NSString*) version
- {
- NSAssert( FALSE, @"Apple has made a private class with the same name as this class - we have to rename it because ObjectiveC sucks, and Apple used a foolish name, so we CANNOT adhere to the spec now" );
-
- NSAssert( FALSE, @"Not implemented yet" );
- return FALSE;
- }
- // Introduced in DOM Level 2:
- -(DocumentType*) createDocumentType:(NSString*) qualifiedName publicId:(NSString*) publicId systemId:(NSString*) systemId
- {
- NSAssert( FALSE, @"Apple has made a private class with the same name as this class - we have to rename it because ObjectiveC sucks, and Apple used a foolish name, so we CANNOT adhere to the spec now" );
-
- NSAssert( FALSE, @"Not implemented yet" );
- return nil;
- }
- // Introduced in DOM Level 2:
- -(Document*) createDocument:(NSString*) namespaceURI qualifiedName:(NSString*) qualifiedName doctype:(DocumentType*) doctype
- {
- NSAssert( FALSE, @"Apple has made a private class with the same name as this class - we have to rename it because ObjectiveC sucks, and Apple used a foolish name, so we CANNOT adhere to the spec now" );
-
- NSAssert( FALSE, @"Not implemented yet" );
- return nil;
- }
- @end
|