Back to project page hpush.
The source code is released under:
MIT License
If you think the Android project hpush listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hpush.data; //from w ww . j a va2s . c o m public final class Daily extends Message { private boolean mBookmarked; public Daily(Message msg, boolean bookmarked) { super(msg.getDbId(),msg.getBy(), msg.getId(), msg.getScore(), msg.getCommentsCount(), msg.getText(), msg.getTime(), msg.getTitle(), msg.getUrl(), msg.getPushedTime()); mBookmarked = bookmarked; } public boolean isBookmarked() { return mBookmarked; } public void setBookmarked(boolean bookmarked) { mBookmarked = bookmarked; } }