| 1 | package org.openintents.intents; |
| 2 | |
| 3 | /** |
| 4 | * |
| 5 | * @author Peli |
| 6 | * @version 1.2.4 (May 2010) |
| 7 | */ |
| 8 | public class ShoppingListIntents { |
| 9 | |
| 10 | /** |
| 11 | * String extra containing the action to be performed. |
| 12 | * |
| 13 | * <p>Constant Value: "org.openintents.extra.ACTION"</p> |
| 14 | */ |
| 15 | public static final String EXTRA_ACTION = "org.openintents.extra.ACTION"; |
| 16 | |
| 17 | /** |
| 18 | * String extra containing the data on which to perform the action. |
| 19 | * |
| 20 | * <p>Constant Value: "org.openintents.extra.DATA"</p> |
| 21 | */ |
| 22 | public static final String EXTRA_DATA = "org.openintents.extra.DATA"; |
| 23 | |
| 24 | /** |
| 25 | * Task to be used in EXTRA_ACTION. |
| 26 | * |
| 27 | * <p>Constant Value: "org.openintents.shopping.task.clean_up_list"</p> |
| 28 | */ |
| 29 | public static final String TASK_CLEAN_UP_LIST = "org.openintents.shopping.task.clean_up_list"; |
| 30 | |
| 31 | /** |
| 32 | * Inserts shopping list items from a string array in intent extras. |
| 33 | * |
| 34 | * <p>Constant Value: "org.openintents.type/string.arraylist.shopping"</p> |
| 35 | */ |
| 36 | public static final String TYPE_STRING_ARRAYLIST_SHOPPING = "org.openintents.type/string.arraylist.shopping"; |
| 37 | |
| 38 | /** |
| 39 | * Inserts shopping list items from a string array in intent extras. |
| 40 | * |
| 41 | * <p>Constant Value: "org.openintents.extra.STRING_ARRAYLIST_SHOPPING"</p> |
| 42 | */ |
| 43 | public static final String EXTRA_STRING_ARRAYLIST_SHOPPING = "org.openintents.extra.STRING_ARRAYLIST_SHOPPING"; |
| 44 | |
| 45 | /** |
| 46 | * Intent extra for list of quantities corresponding to shopping list items in STRING_ARRAYLIST_SHOPPING. |
| 47 | * |
| 48 | * <p>Constant Value: "org.openintents.extra.STRING_ARRAYLIST_QUANTITY"</p> |
| 49 | */ |
| 50 | public static final String EXTRA_STRING_ARRAYLIST_QUANTITY = "org.openintents.extra.STRING_ARRAYLIST_QUANTITY"; |
| 51 | |
| 52 | /** |
| 53 | * Intent extra for list of prices corresponding to shopping list items in STRING_ARRAYLIST_SHOPPING. |
| 54 | * |
| 55 | * <p>Constant Value: "org.openintents.extra.STRING_ARRAYLIST_PRICE"</p> |
| 56 | */ |
| 57 | public static final String EXTRA_STRING_ARRAYLIST_PRICE = "org.openintents.extra.STRING_ARRAYLIST_PRICE"; |
| 58 | |
| 59 | /** |
| 60 | * Intent extra for list of barcodes corresponding to shopping list items in STRING_ARRAYLIST_SHOPPING. |
| 61 | * |
| 62 | * <p>Constant Value: "org.openintents.extra.STRING_ARRAYLIST_BARCODE"</p> |
| 63 | */ |
| 64 | public static final String EXTRA_STRING_ARRAYLIST_BARCODE = "org.openintents.extra.STRING_ARRAYLIST_BARCODE"; |
| 65 | |
| 66 | |
| 67 | } |