Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping 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.chopping.bus; /*from ww w.j a v a2 s. co m*/ import com.chopping.data.AppListItem; /** * A call to an external app, open or direct to store when not be installed before. * * @author Xinyue Zhao */ public final class LinkToExternalAppEvent { /** * The data-set represent an external app. */ private AppListItem mAppListItem; /** * Constructor of {@link LinkToExternalAppEvent} * * @param appListItem * The data-set represent an external app. */ public LinkToExternalAppEvent(AppListItem appListItem) { mAppListItem = appListItem; } /** * Get the data-set represent an external app. */ public AppListItem getAppListItem() { return mAppListItem; } }