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.bus; /*from w w w . j a v a2 s.com*/ import android.view.View; import com.hpush.data.Message; /** * Event for clicking on comments-button of a message. * * @author Xinyue Zhao */ public final class ClickMessageCommentsEvent { /** * The message to click. */ private Message mMessage; /** * The sender {@link android.view.View}. */ private View mSenderV; /** * Constructor of {@link com.hpush.bus.ClickMessageCommentsEvent}. * * @param message * The message to click. * @param senderV The sender {@link android.view.View}. */ public ClickMessageCommentsEvent(Message message, View senderV) { mMessage = message; mSenderV = senderV; } /** * @return The message to click. */ public Message getMessage() { return mMessage; } /** * * @return The sender {@link android.view.View}. */ public View getSenderV() { return mSenderV; } }