summaryrefslogtreecommitdiffstats
blob: e4cdef7ec8bd5c93f45879a9a4d36d22b2c40ab3 (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 {
    private String text_ = "";

    public Subject() {}

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

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

    public String getText() {
        return text_;
    }
}