/* * Copyright (c) 2010-2012, 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 { private String text_ = ""; public Status() { } public Status(String text) { text_ = text; } public void setText(String text) { text_ = text; } public String getText() { return text_; } @Override public String toString() { return "Status : " + text_; } }