ObjFW
 All Classes Functions Variables
Instance Methods | List of all members
<OFStringXMLUnescapingDelegate> Protocol Referenceabstract

A protocol that needs to be implemented by delegates for -[stringByXMLUnescapingWithHandler:]. More...

#import <OFString+XMLUnescaping.h>

Inheritance diagram for <OFStringXMLUnescapingDelegate>:
<OFObject> OFXMLParser

Instance Methods

(OFString *) - string:containsUnknownEntityNamed:
 This callback is called when an unknown entity was found while trying to unescape XML.
 
- Instance Methods inherited from <OFObject>
(Class) - class
 Returns the class of the object.
 
(BOOL) - isKindOfClass:
 Returns a boolean whether the object of the specified kind.
 
(BOOL) - isMemberOfClass:
 Returns a boolean whether the object is a member of the specified class.
 
(BOOL) - respondsToSelector:
 Returns a boolean whether the object responds to the specified selector.
 
(BOOL) - conformsToProtocol:
 Checks whether the object conforms to the specified protocol.
 
(IMP) - methodForSelector:
 Returns the implementation for the specified selector.
 
(const char *) - typeEncodingForSelector:
 Returns the type encoding for the specified selector.
 
(id) - performSelector:
 Performs the specified selector.
 
(id) - performSelector:withObject:
 Performs the specified selector with the specified object.
 
(id) - performSelector:withObject:withObject:
 Performs the specified selector with the specified objects.
 
(BOOL) - isEqual:
 Checks two objects for equality.
 
(uint32_t) - hash
 Calculates a hash for the object.
 
(id) - retain
 Increases the retain count.
 
(unsigned int) - retainCount
 Returns the retain count.
 
(void) - release
 Decreases the retain count.
 
(id) - autorelease
 Adds the object to the topmost OFAutoreleasePool of the thread's autorelease pool stack.
 
(id) - self
 Returns the receiver.
 
(BOOL) - isProxy
 Returns whether the object is a proxy object.
 

Detailed Description

A protocol that needs to be implemented by delegates for -[stringByXMLUnescapingWithHandler:].

Method Documentation

- (OFString*) string: (OFString *)  str
containsUnknownEntityNamed: (OFString *)  entity 

This callback is called when an unknown entity was found while trying to unescape XML.

The callback is supposed to return a substitution for the entity or nil if it is unknown to the callback as well, in which case an exception will be thrown.

Parameters
strThe string which contains the unknown entity
entityThe name of the entity that is unknown
Returns
A substitution for the entity or nil

The documentation for this protocol was generated from the following file: