54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
- (double)doubleValue
{
return [[self stringValue] doubleValue];
}
- (OFString*)XMLString
{
return [self XMLStringWithIndentation: 0];
}
- (OFString*)XMLStringWithIndentation: (unsigned int)indentation
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
- (OFString*)description
{
return [self XMLStringWithIndentation: 2];
}
- (OFXMLElement*)XMLElementBySerializing
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
- copy
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
@end
|
|
>
>
>
>
>
>
>
>
<
|
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
- (double)doubleValue
{
return [[self stringValue] doubleValue];
}
- (OFString*)XMLString
{
return [self XMLStringWithIndentation: 0
level: 0];
}
- (OFString*)XMLStringWithIndentation: (unsigned int)indentation
{
return [self XMLStringWithIndentation: 0
level: 0];
}
- (OFString*)XMLStringWithIndentation: (unsigned int)indentation
level: (unsigned int)level
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
- (OFString*)description
{
return [self XMLStringWithIndentation: 2];
}
- (OFXMLElement*)XMLElementBySerializing
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
- copy
{
return [self retain];
}
@end
|