summaryrefslogtreecommitdiffstats
blob: 073088f36f6760f699b9f1e15aa1f6ae85423190 (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
25
26
27
28
/*
 * Copyright (c) 2010, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010, Remko Tronçon.
 * All rights reserved.
 */

package com.isode.stroke.elements;

public class Body extends Payload {
    String text_ = "";

    public Body() {}

    public Body(String text) {
        setText(text);
    }

    public void setText(String text) {
        text_ = text;
    }

    public String getText() {
        return text_;
    }
}