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 va 2 s . c o m /** * Event to remove all selected values. * * @author Xinyue Zhao */ public final class RemoveAllEvent { /** * Which pager and whose items should be removed. */ public enum WhichPage { Messages, Bookmarks } /** * Pager type. */ private WhichPage mWhichPage; /** * Constructor of {@link RemoveAllEvent} * @param whichPage Pager type. */ public RemoveAllEvent(WhichPage whichPage) { mWhichPage = whichPage; } /** * * @return Pager type. */ public WhichPage getWhichPage() { return mWhichPage; } }