summaryrefslogtreecommitdiffstats
blob: a564b1263d96fc36e515ceb7198f0d4c5cdce4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2010, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010, Remko Tron¨on.
 * All rights reserved.
 */

package com.isode.stroke.parser;

public abstract class XMLParser {
    private final XMLParserClient client_;

    public XMLParser(XMLParserClient client) {
        client_ = client;
    }

    public abstract boolean parse(String data);

    protected XMLParserClient getClient() {
        return client_;
    }
}