29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OFString *_prefix;
OFXMLParser *_parser;
}
/*!
* The unbound prefix.
*/
@property (readonly, copy) OFString *prefix;
/*!
* The parser which encountered the unbound prefix.
*/
@property (readonly, retain) OFXMLParser *parser;
/*!
* @brief Creates a new, autoreleased unbound prefix exception.
*
* @param prefix The prefix which is unbound
* @param parser The parser which encountered the unbound prefix
* @return A new, autoreleased unbound prefix exception
|
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
OFString *_prefix;
OFXMLParser *_parser;
}
/*!
* The unbound prefix.
*/
@property (readonly, nonatomic) OFString *prefix;
/*!
* The parser which encountered the unbound prefix.
*/
@property (readonly, nonatomic) OFXMLParser *parser;
/*!
* @brief Creates a new, autoreleased unbound prefix exception.
*
* @param prefix The prefix which is unbound
* @param parser The parser which encountered the unbound prefix
* @return A new, autoreleased unbound prefix exception
|