-
Notifications
You must be signed in to change notification settings - Fork 2
/
XMPPDiscoItems.m
47 lines (45 loc) · 1.01 KB
/
XMPPDiscoItems.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// XMPPDiscoItems.m
// Jabber
//
// Created by David Chisnall on 14/11/2007.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "XMPPDiscoItems.h"
#import <EtoileFoundation/EtoileFoundation.h>
@implementation XMPPDiscoItems
- (id) initWithXMLParser: (ETXMLParser*)aParser
key: (id) aKey
{
self = [super initWithXMLParser: aParser
key: aKey];
if (nil == self)
{
return nil;
}
items = [[NSMutableArray alloc] init];
value = self;
return self;
}
- (void)startElement:(NSString *)aName
attributes:(NSDictionary*)attributes
{
if([aName isEqualToString:@"item"])
{
[items addObject:attributes];
}
else if([aName isEqualToString:@"query"])
{
node = [attributes objectForKey:@"node"];
}
depth++;
}
- (NSArray*) items
{
return items;
}
- (NSString*) node
{
return node;
}
@end