77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
ID: ID_];
}
- (OFString*)type
{
if (type == nil)
return @"available";
}
- (void)addShow: (OFString*)show
{
[self addChild: [OFXMLElement elementWithName: @"show"
namespace: XMPP_NS_CLIENT
stringValue: show]];
|
>
|
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
ID: ID_];
}
- (OFString*)type
{
if (type == nil)
return @"available";
return [[type copy] autorelease];
}
- (void)addShow: (OFString*)show
{
[self addChild: [OFXMLElement elementWithName: @"show"
namespace: XMPP_NS_CLIENT
stringValue: show]];
|