addDefaultRules |
Method used to add the default rules to this controller. These rules are ECXMLControlDefaultAllocatorRule, ECXMLControlReferenceRule, ECXMLControlSetAttributeRule, ECXMLControlLinkObjectRule
- addDefaultRules;
This method is automatically been called by the implementation before the parsing process if not one before.
delegateErrorsTo |
Specifies the method used to call in case of an parsing error
See Also:
- delegateErrorsTo:usingMethod:
- delegateErrorsTo: (id) receiver usingMethod: (SEL) anErrorHandler;
anErrorHandler
- error handling getting the underlying NSXMLParser instance and an error code
This method has to conform to
- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError
delegateErrorsTo:usingMethod: |
Specifies the method used to call in case of an parsing error
See Also:
- delegateErrorsTo
- delegateErrorsTo: (id) receiver usingMethod: (SEL) anErrorHandler;
anErrorHandler
- error handling getting the underlying NSXMLParser instance and an error code
This method has to conform to
- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError
enableDefaultRules: |
By default the default rules are enabled. Using this method they may be disabled.
- enableDefaultRules: (BOOL) enable;
enable
- if NO then default rules are disabled.
initWithContentsOfURL: |
initializes using a specified file
- initWithContentsOfURL: (NSURL *) anURL;
anURL
- URL to read the XML data from
initWithData: |
Initializes using the specified data
- initWithData: (NSData *) data;
data
- data to be intepreted as XML
parseXML |
starts parsing the given XML
- parseXML;
rootUserObject |
- (id) rootUserObject;
ruleSelector |
returns the underlying rule selector. this instance may be used to install own rules
- (ECXMLControlRuleSelector *) ruleSelector;
Note: Modifying the rule selector during the parsing process is undefined.
userObjects |
- (NSArray *) userObjects;
(Last Updated November 08, 2007)