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

package com.isode.stroke.serializer.xml;

public class XMLRawTextNode implements XMLNode {
    private final String text_;

    public XMLRawTextNode(String text) {
        text_ = text;
    }

    public String serialize() {
        return text_;
    }
}