Android Open Source - hpush Message From Project Back to project page hpush .
License 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.
Java Source Code package com.hpush.data;
/ * w w w . j a v a 2 s . c o m * /
import java.io.Serializable;
import com.google.gson.annotations.SerializedName;
public class Message implements Serializable{
@SerializedName("dbid" )
private long mDbId;
@SerializedName("By" )
private String mBy;
@SerializedName("Id" )
private long mId;
@SerializedName("Score" )
private long mScore;
@SerializedName("Kids" )
private long mCommentsCount;
@SerializedName("Text" )
private String mText;
@SerializedName("Time" )
private long mTime;
@SerializedName("Title" )
private String mTitle;
@SerializedName("Url" )
private String mUrl;
@SerializedName("Pushed_Time" )
private long mPushedTime;
public Message(long dbId, String by, long id, long score, long commentsCount, String text, long time, String title, String url, long pushedTime) {
mDbId = dbId;
this.mBy = by;
this.mId = id;
this.mScore = score;
this.mCommentsCount = commentsCount;
this.mText = text;
this.mTime = time;
this.mTitle = title;
this.mUrl = url;
mPushedTime = pushedTime;
}
public Message(String by, long id, long score, long commentsCount, String text, long time, String title, String url, long pushedTime) {
this.mBy = by;
this.mId = id;
this.mScore = score;
this.mCommentsCount = commentsCount;
this.mText = text;
this.mTime = time;
this.mTitle = title;
this.mUrl = url;
mPushedTime = pushedTime;
}
public String getBy() {
return mBy;
}
public long getId() {
return mId;
}
public long getScore() {
return mScore;
}
public String getText() {
return mText;
}
public long getTime() {
return mTime;
}
public String getTitle() {
return mTitle;
}
public String getUrl() {
return mUrl;
}
public long getDbId() {
return mDbId;
}
public void setDbId(long dbId) {
mDbId = dbId;
}
public long getPushedTime() {
return mPushedTime;
}
public void setPushedTime(long pushedTime) {
mPushedTime = pushedTime;
}
public long getCommentsCount() {
return mCommentsCount;
}
public void setCommentsCount(long commentsCount) {
mCommentsCount = commentsCount;
}
public void setUrl(String url) {
mUrl = url;
}
}
Java Source Code List com.hpush.app.App.java com.hpush.app.activities.BasicActivity.java com.hpush.app.activities.DailiesActivity.java com.hpush.app.activities.MainActivity.java com.hpush.app.activities.SettingActivity.java com.hpush.app.activities.WebViewActivity.java com.hpush.app.adapters.DailiesListAdapter.java com.hpush.app.adapters.MainViewPagerAdapter.java com.hpush.app.adapters.MessagesListAdapter.java com.hpush.app.fragments.AboutDialogFragment.java com.hpush.app.fragments.AdFragment.java com.hpush.app.fragments.AppListImpFragment.java com.hpush.app.fragments.BookmarksListFragment.java com.hpush.app.fragments.DailiesLstFragment.java com.hpush.app.fragments.GPlusFragment.java com.hpush.app.fragments.MessagesListFragment.java com.hpush.bus.BookmarkAllEvent.java com.hpush.bus.BookmarkMessageEvent.java com.hpush.bus.BookmarkedEvent.java com.hpush.bus.ClickMessageCommentsEvent.java com.hpush.bus.ClickMessageEvent.java com.hpush.bus.ClickMessageLinkEvent.java com.hpush.bus.DeleteAccountEvent.java com.hpush.bus.EULAConfirmedEvent.java com.hpush.bus.EULARejectEvent.java com.hpush.bus.EditSettingsEvent.java com.hpush.bus.GCMRegistedEvent.java com.hpush.bus.InsertAccountEvent.java com.hpush.bus.LoadAllEvent.java com.hpush.bus.LoginedGPlusEvent.java com.hpush.bus.LogoutGPlusEvent.java com.hpush.bus.RemoveAllEvent.java com.hpush.bus.SelectMessageEvent.java com.hpush.bus.ShareMessageEvent.java com.hpush.bus.ShowActionBar.java com.hpush.bus.SortAllEvent.java com.hpush.bus.UpdateCurrentTotalMessagesEvent.java com.hpush.data.DailyListItem.java com.hpush.data.Daily.java com.hpush.data.FunctionType.java com.hpush.data.MessageListItem.java com.hpush.data.Message.java com.hpush.data.Status.java com.hpush.data.SyncList.java com.hpush.db.BookmarksTbl.java com.hpush.db.DB.java com.hpush.db.DailyTbl.java com.hpush.db.DatabaseHelper.java com.hpush.db.MessagesTbl.java com.hpush.gcm.ChangeSettingsTask.java com.hpush.gcm.GcmBroadcastReceiver.java com.hpush.gcm.GcmIntentService.java com.hpush.gcm.RegGCMTask.java com.hpush.gcm.SyncTask.java com.hpush.gcm.UnregGCMTask.java com.hpush.utils.Prefs.java com.hpush.utils.Utils.java com.hpush.views.FontTextView.java com.hpush.views.OnViewAnimatedClickedListener2.java com.hpush.views.OnViewAnimatedClickedListener3.java com.hpush.views.OnViewAnimatedClickedListener.java com.hpush.views.SortActionViewProvider.java com.hpush.views.WebViewEx.java