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 w w .j a v a 2 s . c om*/ import com.hpush.data.Message; /** * Event for clicking a message. * * @author Xinyue Zhao */ public final class ClickMessageEvent { /** * The message to click. */ private Message mMessage; /** * Constructor of {@link com.hpush.bus.ClickMessageEvent}. * * @param message * The message to click. */ public ClickMessageEvent(Message message) { mMessage = message; } /** * @return The message to click. */ public Message getMessage() { return mMessage; } }