summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/elements/Status.java')
-rw-r--r--src/com/isode/stroke/elements/Status.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/com/isode/stroke/elements/Status.java b/src/com/isode/stroke/elements/Status.java
new file mode 100644
index 0000000..f40814d
--- /dev/null
+++ b/src/com/isode/stroke/elements/Status.java
@@ -0,0 +1,29 @@
+/*
+ * 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 Status extends Payload {
+
+ String text_ = "";
+
+ public Status() {
+ }
+
+ public Status(String text) {
+ text_ = text;
+ }
+
+ public void setText(String text) {
+ text_ = text;
+ }
+
+ public String getText() {
+ return text_;
+ }
+}