00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSXMLParser : NSObject
00010 {
00011 void *_parser;
00012 id _delegate;
00013 id _reserved1;
00014 id _reserved2;
00015 id _reserved3;
00016 }
00017
00018 - (id)_info;
00019 - (id)initWithContentsOfURL:(id)fp8;
00020 - (id)initWithData:(id)fp8;
00021 - (id)delegate;
00022 - (void)setDelegate:(id)fp8;
00023 - (void)setShouldProcessNamespaces:(BOOL)fp8;
00024 - (void)setShouldReportNamespacePrefixes:(BOOL)fp8;
00025 - (void)setShouldResolveExternalEntities:(BOOL)fp8;
00026 - (BOOL)shouldProcessNamespaces;
00027 - (BOOL)shouldReportNamespacePrefixes;
00028 - (BOOL)shouldResolveExternalEntities;
00029 - (BOOL)parse;
00030 - (void)abortParsing;
00031 - (id)parserError;
00032 - (id)publicID;
00033 - (id)systemID;
00034 - (int)lineNumber;
00035 - (int)columnNumber;
00036 - (void)dealloc;
00037 - (void)finalize;
00038 - (void)_setParserError:(int)fp8;
00039 - (struct _xmlParserCtxt *)_parserContext;
00040 - (void)_pushNamespaces:(id)fp8;
00041 - (void)_popNamespaces;
00042 - (void)_initializeSAX2Callbacks;
00043
00044 @end
00045