Back to project page android-intents.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions...
If you think the Android project android-intents 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.marvinlabs.intents.demo; /* ww w. j av a2s.c o m*/ import android.content.Intent; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class DemoItem { public String description; public Intent intent; public DemoItem(String description, Intent intent) { this.description = description; this.intent = intent; } @Override public String toString() { return description; } }