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; // w ww .ja va 2 s . co m import android.view.View; import com.hpush.data.Message; /** * Event for clicking link-button of a message. * * @author Xinyue Zhao */ public final class ClickMessageLinkEvent { /** * The message to click. */ private Message mMessage; /** * The sender {@link android.view.View}. */ private View mSenderV; /** * Constructor of {@link com.hpush.bus.ClickMessageLinkEvent}. * * @param message * The message to click. * @param senderV The sender {@link android.view.View}. */ public ClickMessageLinkEvent(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; } }