Back to project page pinpoint-android.
The source code is released under:
MIT License
If you think the Android project pinpoint-android 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 co.islovely.pinpoint; //from w w w . ja v a 2 s . c o m public class Task { private final Class activityClass; private final LauncherItem launcherItem; public Task(LauncherItem launcherItem, Class activityClass) { this.launcherItem = new LauncherItem(launcherItem); this.activityClass = activityClass; } public Class getActivityClass() { return this.activityClass; } public LauncherItem getLauncherItem() { return new LauncherItem(this.launcherItem); } }