summaryrefslogtreecommitdiffstats
blob: f395de8ef579d325a1f8e3d21b8563d80068272c (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 Subject extends Payload {
    String text_ = "";

    public Subject() {}

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

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

    public String getText() {
        return text_;
    }
}