1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
k-9/src/com/fsck/k9/local/LocalTextBody.java

21 lines
478 B
Java
Raw Normal View History

package com.fsck.k9.local;
import com.fsck.k9.mail.internet.TextBody;
2014-12-11 18:32:38 -05:00
class LocalTextBody extends TextBody {
/**
* This is an HTML-ified version of the message for display purposes.
*/
2014-09-14 05:15:44 -04:00
private final String mBodyForDisplay;
public LocalTextBody(String body, String bodyForDisplay) {
super(body);
this.mBodyForDisplay = bodyForDisplay;
}
public String getBodyForDisplay() {
return mBodyForDisplay;
}
2014-12-11 18:32:38 -05:00
}//LocalTextBody