Android Open Source - supersearch Constants






From Project

Back to project page supersearch.

License

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.

Java Source Code

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";

}




Java Source Code List

org.lvlv.supersearch.Constants.java
org.lvlv.supersearch.HelpActivity.java
org.lvlv.supersearch.HelpTopicActivity.java
org.lvlv.supersearch.ModifySearches.java
org.lvlv.supersearch.SearchesData.java
org.lvlv.supersearch.SuperSearch.java
org.lvlv.supersearch.WizardActivity.java
org.lvlv.supersearch.util.HelpTopicView.java