Back to project page supersearch.
The source code is released under:
GNU General Public License
If you think the Android project supersearch 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.lvlv.supersearch; /*from ww w . j av a 2 s. c om*/ import android.provider.BaseColumns; public interface Constants extends BaseColumns { public static final String PREFS_NAME = "SuperSearch"; public static final String FIRST_RUN = "firstrun"; public static final String DEFAULT_SEARCH = "defsearch"; public static final String TABLE_NAME = "searches"; //Columns public static final String NAME = "name"; public static final String URL = "url"; public static final String TERM = "term"; }