Back to project page DIYgenomics_Android.
The source code is released under:
/** * Copyright (C) 2010 DIYgenomics diygenomics.org * Copyright (C) 2010 Melanie Swan mxswan@gmail * Copyright (C) 2010 Michael Kolb * Copyright (C) 2010 Lawrence S. Wong * All rights reserved. * * M...
If you think the Android project DIYgenomics_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 org.diygenomics.pg.utils; /*from ww w. j av a 2 s . co m*/ import java.util.HashMap; import java.util.Map; public class Flurry { public static final String KEY = "KQQKPFJ5T6HBYS63WC6H"; public static final String EVENT_CATEGORIES = "view categories"; public static final String EVENT_CATITEM = "view catitem"; public static final String EVENT_VARIANT = "view variant"; public static final String EVENT_STUDY = "view study"; private static Map<String, String> smap = new HashMap<String, String>(3); public static Map<String, String> map(String key, String val) { smap.clear(); smap.put(key, val); return smap; } }