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 av a 2 s . co m*/ /** * Event to show action-bar or NOT. * * @author Xinyue Zhao */ public final class ShowActionBar { /** * {@code true} if show. */ private boolean mShow; /** * Constructor of {@link com.hpush.bus.ShowActionBar} * @param show {@code true} if show. */ public ShowActionBar(boolean show) { mShow = show; } /** * * @return {@code true} if show. */ public boolean isShow() { return mShow; } }