Android UI for reading a message (text/plain only for now).

This commit is contained in:
akwizgran
2013-03-04 19:45:31 +00:00
parent a651e8ef73
commit d71ec9809d
15 changed files with 343 additions and 54 deletions

View File

@@ -49,12 +49,12 @@ public abstract class MessageHeader {
}
/** Returns true if the message has been read. */
public boolean getRead() {
public boolean isRead() {
return read;
}
/** Returns true if the message has been starred. */
public boolean getStarred() {
public boolean isStarred() {
return starred;
}
}